lucid-package 0.0.98 → 0.0.99
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 +1 -1
- package/src/installationutil.js +1 -1
package/package.json
CHANGED
package/src/installationutil.js
CHANGED
|
@@ -12,7 +12,7 @@ function installDependenciesIfNeeded(isInternal, skipSDKDependency = false, addi
|
|
|
12
12
|
const sdkDir = path.join('node_modules', 'lucid-extension-sdk');
|
|
13
13
|
if (isInternal) {
|
|
14
14
|
//Delete any lucid-extension-sdk directory; let it come from //extensibility/packages/node_modules/lucid-extension-sdk
|
|
15
|
-
|
|
15
|
+
(0, shellutil_1.execSyncLoggingOutputOnError)(`rm -rf ${sdkDir}`);
|
|
16
16
|
}
|
|
17
17
|
else if (!oldFs.existsSync(sdkDir) && !skipSDKDependency) {
|
|
18
18
|
console.log((0, theme_1.success)('Adding dependency on SDK'));
|