Cyrille David
Cyrille David
I face the same issue with Gitlab Entrerprise. There is this workaround where I tweak https://github.com/ember-learn/ember-cli-addon-docs/blob/master/lib/deploy/plugin.js#L184. But how could we provide a more permanent solution? 🤔 I'm ready to work...
Ok, good news is: it's supported through a bit of `ember-cli-deploy-git` config. In your addon's `config/deploy.js`, you'll want to add this line: ```javascript ENV.git = { repo: `git@gitlab.${custom-domain}:${orga-name}/${project-name}.git' } ```...
You're right, "Get started by tying" is better (https://github.com/ember-cli/ember-cli/pull/8882). That said, can I argue for `yarn start` over `ember serve`? 😉 Running `ember serve` implies ember-cli is installed globally. Instead...
Please forget about my previous comment. I won't have time / focus to do what I suggest. The ember-cli PR is updated with `ember serve`.
@lifeart good idea, sure I'll do that. Let me fix a bug and initiate the migration.
@charlesfries I took a look to the reproduction repo. GitHub Actions do indeed fail for the lint ([link](https://github.com/charlesfries/etlpp/runs/4780254027?check_suite_focus=true)). But they fail on a lint error, meaning the linting happens correctly....
I am giving this a second thought. Could you tell me what your node version is?
This issue was initially opened in ember-template-lint-plugin-prettier. I transfer it to ember-template-lint, where we will fix it. Thanks for the report @charlesfries.
In case: there is a [how-to](https://github.com/ember-template-lint/ember-template-lint/blob/master/docs/fixer.md) to help you implement the fixer.
template-recast’s README documents the package API (mainly the parse / print / transform functions). If you’d like discover the ast, what the different types are and so on, you can...