You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 7, 2024. It is now read-only.
You can run the demo locally by simply doing `npm start`; this will start the demo at `http://localhost:3000`.
14
+
15
+
### Linting
16
+
17
+
Before commiting any changes, be sure to do `npm run lint`; this will lint all relevant files using [ESLint](http://eslint.org/) and report on any changes that you need to make. You can also run `npm run lint-fix` to fix most common lint errors automatically.
18
+
19
+
## Releasing a new version to NPM (only for project administrators):
20
+
21
+
1. Run `npm version patch` (or `minor`, `major` as appropriate) to lint and build the `lib` and `umd` directories.
22
+
2. Run `npm publish` and publish to NPM if all is well.
0 commit comments