git clone <repository-url>
yarn install
cd packages/components
yarn run build
To set a watcher on files located in src
and rebuild on change
yarn start
yarn run lint
yarn run lint:fix
yarn run lint:css
yarn run lint:css:fix
Notice: to have VSCode autofix the code on save, you have to:
- install the Stylelint extension
- in either the user or workspace settings add the entry
"source.fixAll.stylelint": true
to theeditor.codeActionsOnSave
option
The associated test application is located at the root of the monorepo, in showcase
cd showcase
ember test
– Runs the test suite on the current Ember versionember test --server
– Runs the test suite in "watch mode"ember try:each
– Runs the test suite against multiple Ember versions
cd showcase
yarn run start
- Visit the application at http://localhost:4200.
For more information on using ember-cli, visit https://cli.emberjs.com/release/.