Thomas Gossmann
Thomas Gossmann
Or is there a PEX components repo? That would probably the better place.
Unfortunately, this doesn't work and I must admit I didn't thought of this use-case when I developed the plugin, but I can see a need here. I developed this plugin,...
What would be a good addition to this plugin is, to set up a transpiling, e.g. from `x.less` to `y.css` and add an option for a file to watch for...
Here is how it could be done: On the project transpiler page, path section for a selected transpiler. Select a path entry and if it is a file, you can...
No, I haven't. So far this is just an idea and only focussing on transpiling errors, no coffeescript (or less or sass) syntax errors. But this is also the reason,...
That error appears when the folder couldn't be created during the init step (which runs `ember new`). I've seen this in only rare cases and the solution was to run...
I have no idea why this is failing. All I do is this: https://github.com/gossi/ember-cli-create/blob/ae310fdde4077e57e30cca259359d63d84a3914c/src/tasks/init.js#L5-L33 where `config.cmd` is either `new` or `addon`
No, nothing like this is built-in 😬 As you can see, it running `ember new|addon` command with respective args and options. It is piped through `execa`. I have seen this...
Hmm, no - `ember-cli-create` was never having a dependency to `ember-cli` itself. That is by design, it will use your globally installed one. Some need to have an explicit version...
Ah, I was blindly suggesting everybody has a global ember executable. For me `npx` made the whole situation worse, so I abandonned it right away 😂 (maybe I need to...