9 lines
231 B
Markdown
9 lines
231 B
Markdown
|
|
# npm Package Flow
|
||
|
|
|
||
|
|
1. `npm ci` — clean install
|
||
|
|
2. `npm run lint` — lint
|
||
|
|
3. `npm test` — tests
|
||
|
|
4. `npm run build` — build
|
||
|
|
5. `npm pack --dry-run` — verify package contents
|
||
|
|
6. `npm publish` — publish (tag releases only)
|