This addon contains common styles and components shared by Boundary UIs.
Table of Contents generated with DocToc
- Add Styles to an App
- Installation
- Yarn Commands
- Linting
- Formatting
- Building Components
- Using Components
- Running tests
- Running the dummy application
- Contributing
Add this addon to an Ember application's devDependencies
as:
"rose": "*"
, for applications included in this monorepo. Application's
may then import rose styles by adding @import 'rose';
to their stylesheets.
See monorepo README for installation instructions.
List of available project commands. yarn run <command-name>
Command | Description |
---|---|
build:development | Builds the dummy app in development mode. |
build | Builds the dummy app for production. |
lint | Runs all lint commands. |
lint:fix | Runs automatic lint fixes for all files. |
lint:hbs | Lints template hbs files. |
lint:hbs:fix | Runs automatic lint fixes for hbs files. |
lint:js | Lints js files. |
lint:js:fix | Runs automatic lint fixes for js files. |
lint:sass | Lints scss files. |
format | Runs all auto-formatters. |
format:js | Auto-formats js files using Prettier. |
format:hbs | Auto-formats hbs files using Prettier. |
format:sass | Auto-formats scss files using Prettier. |
start | Runs the dummy app local server. |
test | Runs all tests. |
test:ember-compatibility | Runs tests across multiple Ember versions with ember-try. |
precommit | Runs all lint, format and tests. |
doc:toc | Automatically generates a table of contents for this README file. |
Additional commands in the monorepo package may affect this projects.
yarn lint:hbs
yarn lint:js
yarn lint:js --fix
Before submitting your work, be sure to run auto-formatters (see commands above). This helps to ensure consistency among authors.
yarn format
To build a new component, start by generating it on the command line with
ember g component rose/component-name
.
A few of the components have additional ember package dependencies that need to be installed before usage.
Component | Dependency |
---|---|
Rose::Dropdown | ember-modifier |
yarn test
– Runs the test suite on the current Ember versionyarn test --server
– Runs the test suite in "watch mode"yarn test:all
– Runs the test suite against multiple Ember versions
yarn start
- Visit the dummy application at http://localhost:4200.
See monorepo README for more contribution instructions.
To autogenerate a ToC (table of contents) for this README,
run yarn doc:toc
. Please update the ToC whenever editing the structure
of README.