Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

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