@microtronics/studio-cli 1.1.0-rc.0 → 1.1.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/main.js +33 -33
- package/dist/studio-cli.d.ts +7 -5
- package/out/api.js +28 -28
- package/out/studio-cli.d.ts +7 -5
- package/package.json +1 -1
package/dist/studio-cli.d.ts
CHANGED
|
@@ -1989,7 +1989,8 @@ export declare namespace Dependencies {
|
|
|
1989
1989
|
* Install npm dependencies in pov and blo working paths if they exist and contain a package.json.
|
|
1990
1990
|
* This ensures that a single `studio install` command sets up the entire project.
|
|
1991
1991
|
* If the root package.json declares npm workspaces that cover a part, the install is done once at the
|
|
1992
|
-
* project root instead of separately for each covered part
|
|
1992
|
+
* project root using `npm install` instead of separately for each covered part; parts not covered by a
|
|
1993
|
+
* workspace pattern are still installed separately using `npm ci`.
|
|
1993
1994
|
* @param cwd
|
|
1994
1995
|
* @param fs
|
|
1995
1996
|
* @param logger
|
|
@@ -2485,10 +2486,11 @@ export declare enum HttpMethod {
|
|
|
2485
2486
|
* Installs the specified dependencies or all dependencies if none are provided.
|
|
2486
2487
|
* Additionally runs npm install in pov and blo working paths if they exist and contain a package.json,
|
|
2487
2488
|
* ensuring a single install command sets up the entire project. When the root package.json declares npm
|
|
2488
|
-
* workspaces that cover a part, the npm dependencies are installed once at the project root
|
|
2489
|
-
*
|
|
2490
|
-
*
|
|
2491
|
-
*
|
|
2489
|
+
* workspaces that cover a part, the npm dependencies are installed once at the project root using `npm install`
|
|
2490
|
+
* (which respects an in-sync package-lock.json instead of deleting node_modules like `npm ci` would) instead of
|
|
2491
|
+
* separately for each covered part; parts not covered by any workspace pattern are still installed individually
|
|
2492
|
+
* using `npm ci`, falling back to `npm install` when no package-lock.json exists or the lockfile is out of sync
|
|
2493
|
+
* with package.json. Before that, every already-installed library's
|
|
2492
2494
|
* `dist/blo`/`dist/pov/details` `package.json` is normalized to the library's `studio.json` version and stripped
|
|
2493
2495
|
* of any npm dependency entries that reference other Studio libraries.
|
|
2494
2496
|
*
|