lucid-package 0.0.124 → 0.0.125

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-package",
3
- "version": "0.0.124",
3
+ "version": "0.0.125",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -266,4 +266,5 @@ new LucidSuiteExtensionCLI().run(process.argv.slice(2)).catch((reason) => {
266
266
  reasonMessage = reason.toString();
267
267
  }
268
268
  console.error('Error running Lucid Suite Extension CLI', reasonMessage);
269
+ process.exitCode = 1;
269
270
  });
@@ -7,7 +7,7 @@ const shellutil_1 = require("./shellutil");
7
7
  const theme_1 = require("./theme");
8
8
  function installDependenciesIfNeeded(isInternal, skipSDKDependency = false, additionalDependencies = []) {
9
9
  if (!oldFs.existsSync('node_modules')) {
10
- console.log((0, shellutil_1.execSyncLoggingOutputOnError)('npm install --silent').toString());
10
+ console.log((0, shellutil_1.execSyncLoggingOutputOnError)('npm ci --silent').toString());
11
11
  }
12
12
  const sdkDir = path.join('node_modules', 'lucid-extension-sdk');
13
13
  if (isInternal) {