Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 517 Bytes

development-notes.md

File metadata and controls

21 lines (18 loc) · 517 Bytes

Development Notes

While making small integrated changes that require updating multiple packages in the stack frequently, in package.json change:

{   ...,
    "scripts": {
        ...,
-       "patch": "npm version patch && npm run docs && npm run pages && npm publish",
+       "patch": "npm version patch && npm publish",
        ...
    },
    ...
}

This will speed up the process by removing unnecessary updates to the docs. Just don't forget to change it back on changes effecting public APIs.