@microtronics/studio-cli 1.1.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.
@@ -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 instead of
2489
- * separately for each covered part; parts not covered by any workspace pattern are still installed
2490
- * individually. `npm install` is used instead of `npm ci` when no package-lock.json exists, or as a
2491
- * fallback when the lockfile is out of sync with package.json. Before that, every already-installed library's
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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1-rc.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./out/studio-cli.d.ts",