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
|**`yarn start`** or<br/> **`./scripts/start`**| This is the most commonly used command when developing locally. <br/> It runs `yarn build`, `lerna bootstrap`, and then starts the styleguidist server. |
98
-
|`yarn bootstrap`| An alias for `lerna bootstrap`. <br/> Symlinks the various packages together to enable a smooth monorepo development workflow.|
99
-
|`yarn test`| Run tests for all components|
100
-
|`yarn build` or <br/> `./scripts/build`| Uses lerna to run all packages through babel.|
101
-
|`./scripts/release`| Create a new release interactively with Lerna|
102
-
|`./scripts/clean`| Remove all existing `node_modules` directories|
|**`npm run start`**| This is the most commonly used command when developing locally. It runs `npm run build`, `lerna bootstrap`, and starts the `docz` server. |
98
+
|`npm run bootstrap`| An alias for `lerna bootstrap`. <br/> Symlinks the various packages together to enable a smooth monorepo development workflow. |
99
+
|`npm run test`| Run tests for all components |
100
+
|`npm run build`| Uses lerna to run all packages through babel. |
101
+
|`npm run release`| Create a new release interactively with Lerna |
102
+
|`npm run clean`| Remove all existing `node_modules` directories |
103
103
104
104
All Lerna [Lerna commands](https://lernajs.io/) are also available.
105
105
@@ -131,4 +131,4 @@ This means that whenever one package is updated to a new version, all packages a
131
131
132
132
1. Ensure all changes have been committed. Publishing will not work if your local version is not up to date with `master`.
133
133
1.**`npm addUser --scope @blasterjs`** - this ensures you are logged into npm and have sufficient privileges to publish Blaster
134
-
1.**`./scripts/release`** - this runs `lerna publish --exact`, which is an interactive process. All dependencies are pinned to the versions currently installed. Select the appropriate version bump according to semantic versioning.
134
+
1.**`npm run release`** - this runs `lerna publish --exact`, which is an interactive process. All dependencies are pinned to the versions currently installed. Select the appropriate version bump according to semantic versioning.
0 commit comments