@plasmicapp/cli 0.1.330 → 0.1.332

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/dist/index.js CHANGED
@@ -501824,7 +501824,7 @@ function installCommand(config, pkg, baseDir, opts = {}) {
501824
501824
  } else if (opts.dev) {
501825
501825
  return `npm install --save-dev --ignore-scripts ${pkg}`;
501826
501826
  } else {
501827
- return `npm install --ignore-scripts ${pkg}`;
501827
+ return `npm install --legacy-peer-deps --ignore-scripts ${pkg}`;
501828
501828
  }
501829
501829
  }
501830
501830
  }
@@ -502315,7 +502315,7 @@ function authByPrompt(host) {
502315
502315
  },
502316
502316
  {
502317
502317
  name: "token",
502318
- message: `Your personal access token (create one at ${host}/self/settings)`
502318
+ message: `Your personal access token (create one at ${host}/settings)`
502319
502319
  }
502320
502320
  ]);
502321
502321
  const cancel = () => {
package/dist/lib.js CHANGED
@@ -497166,7 +497166,7 @@ function installCommand(config, pkg, baseDir, opts = {}) {
497166
497166
  } else if (opts.dev) {
497167
497167
  return `npm install --save-dev --ignore-scripts ${pkg}`;
497168
497168
  } else {
497169
- return `npm install --ignore-scripts ${pkg}`;
497169
+ return `npm install --legacy-peer-deps --ignore-scripts ${pkg}`;
497170
497170
  }
497171
497171
  }
497172
497172
  }
@@ -497657,7 +497657,7 @@ function authByPrompt(host) {
497657
497657
  },
497658
497658
  {
497659
497659
  name: "token",
497660
- message: `Your personal access token (create one at ${host}/self/settings)`
497660
+ message: `Your personal access token (create one at ${host}/settings)`
497661
497661
  }
497662
497662
  ]);
497663
497663
  const cancel = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/cli",
3
- "version": "0.1.330",
3
+ "version": "0.1.332",
4
4
  "description": "plasmic cli for syncing local code with Plasmic designs",
5
5
  "engines": {
6
6
  "node": ">=12"
@@ -83,5 +83,5 @@
83
83
  "wrap-ansi": "^7.0.0",
84
84
  "yargs": "^15.4.1"
85
85
  },
86
- "gitHead": "6fb29483b149d14f7d4efb6eb7a4dfce503d34cd"
86
+ "gitHead": "3c1ca9b2fcc20f705f5ce27a1cb9c8b49b5bc1d1"
87
87
  }
@@ -10,8 +10,8 @@ import { logger } from "../deps";
10
10
  import { CommonArgs } from "../index";
11
11
  import { HandledError } from "../utils/error";
12
12
  import {
13
- AuthConfig,
14
13
  AUTH_FILE_NAME,
14
+ AuthConfig,
15
15
  DEFAULT_HOST,
16
16
  ENV_AUTH_HOST,
17
17
  ENV_AUTH_TOKEN,
@@ -80,7 +80,7 @@ function authByPrompt(host: string) {
80
80
  },
81
81
  {
82
82
  name: "token",
83
- message: `Your personal access token (create one at ${host}/self/settings)`,
83
+ message: `Your personal access token (create one at ${host}/settings)`,
84
84
  },
85
85
  ]);
86
86
 
@@ -196,7 +196,7 @@ export function installCommand(
196
196
  } else if (opts.dev) {
197
197
  return `npm install --save-dev --ignore-scripts ${pkg}`;
198
198
  } else {
199
- return `npm install --ignore-scripts ${pkg}`;
199
+ return `npm install --legacy-peer-deps --ignore-scripts ${pkg}`;
200
200
  }
201
201
  }
202
202
  }