cli-guides
cli-guides copied to clipboard
Step-by-step guides and tutorials for using the ember-cli to create apps and addons
As noted in #73, to add checks for broken links using remark, we need to run Node 8 in our CI. After #76 is merged, we can add it! cc...
Couple more cookbook topics that the guides don't cover (afaik) 1. Adding files during the build process (especially if the contents need to be fetched async) 1. Changing the contents...
Add the API reference here: https://cli.emberjs.com/release/api-documentation/ There's probably some infrastructure work to make this happen automatically, but I think we can start by manually documenting the methods available to an...
There's no documentation on how to test an addon with diffferent runtime configs. I see some addons doing something like generate multiple apps with different config/environment.js files and run the...
In ember-cli (for a very very long time) it has been possible to have ember-cli use a different main entry point for the addon than what a normal `require('my-package-name')` would...
See https://github.com/ember-cli/ember-cli/issues/7908
In several places throughtout these guides, we show the file paths for components as `components/my-component.js` and `templates/components/my-component.hbs`. These references need to be updated to reflect the new structure where both...
In the CLI guides, we have a section on generating components, https://cli.emberjs.com/release/basic-use/cli-commands/ In Octane, `ember g component` gets you just the test and template. Flags are needed to generate a...
I'm not 100% sure how to do this yet, but this came up on a recent FastBoot team call (thanks @mansona!) and I think its a great idea. Can we...
The number 1 thing I go to the CLI website for is when I’m writing an addon and need to refer to the different hooks available. On my phone, i...