Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(authoring-component): Update checklist when adding new component. #266

Merged
merged 1 commit into from
Feb 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/authoring-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,12 @@ the [mdc-base README](../packages/mdc-base).
Whenever you create a new component, it's important to notify the proper tools and packages of it.
Concretely:

- Ensure that an entry for it exists in `webpack.config.js` for the `all-js` module
- Ensure that an entry for it exists in `webpack.config.js` for the `js-components` and `css` module
- Ensure that it is added as a dependency of `material-components-web`. If the component contains
styles, ensure that they are `@import`ed within `material-components-web.scss`. If the component
contains javascript, ensure that its component namespace is exported within
`material-components-web`, and it is registered with `mdc-auto-init`.
`material-components-web`, and it is registered with `mdc-auto-init`. Lastly, remember to add it
to `package.json` of `material-components-web`.

### Testing

Expand Down