An overview of Scripts and Lerna
Use the bootstrap
command to bootstrap the packages found in the ./packages directory:
Use the `build` command to build the packages found in the ./packages directory:
Use the clean
command to clean the build artifacts created by “build.”
Use the `test` command to run the unit tests found in the packages in the ./packages directory:
Use the lerna add
command to add a dependency to one or more packages.
If a dependency is used by just one package, use the scope
option to specify the correct package name. For example:
adds the `foo` package to the decencies of the `@piximi/bar` package.
If a dependency is used by more than one package, use the `scope` option to specify the correct packages and provide the `peer` option to specify that the package is a peer dependency. For example:
adds the foo
package to the peer dependencies of both the @piximi/bar
and @piximi/baz
package.