datagrok-tools 4.8.2 → 4.8.3
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/bin/commands/link.js
CHANGED
|
@@ -125,7 +125,7 @@ function link(args) {
|
|
|
125
125
|
|
|
126
126
|
var isLinked = lib.isSymbolicLink();
|
|
127
127
|
console.log(isLinked ? "Package \"".concat(lib.name, "\" is linked. Updating dependencies and running the build script...") : "Linking \"".concat(lib.name, "\"..."));
|
|
128
|
-
(0, _child_process.exec)(isLinked ? 'npm update && npm run build' : 'npm install && npm run build && npm link', {
|
|
128
|
+
(0, _child_process.exec)(isLinked ? 'npm update && npm run build' : 'npm install && npm run link-all && npm run build && npm link', {
|
|
129
129
|
cwd: libPath
|
|
130
130
|
}, function (err, stdout, stderr) {
|
|
131
131
|
if (err) throw err;else console.log(stderr, stdout);
|
|
@@ -148,7 +148,7 @@ function link(args) {
|
|
|
148
148
|
|
|
149
149
|
var isLinked = utilsModule.isSymbolicLink();
|
|
150
150
|
console.log(isLinked ? "Package \"".concat(utilsModule.name, "\" is linked. Updating dependencies and running the build script...") : "Linking \"".concat(utilsModule.name, "\"..."));
|
|
151
|
-
(0, _child_process.exec)(isLinked ? 'npm update && npm run build' : 'npm install && npm run build && npm link', {
|
|
151
|
+
(0, _child_process.exec)(isLinked ? 'npm update && npm run build' : 'npm install && npm run link-all && npm run build && npm link', {
|
|
152
152
|
cwd: libPath
|
|
153
153
|
}, function (err, stdout, stderr) {
|
|
154
154
|
if (err) throw err;else {
|
package/package.json
CHANGED