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.
@@ -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 {
@@ -6,11 +6,11 @@
6
6
  "configurations": [
7
7
  {
8
8
  "preLaunchTask": "rebuild",
9
- "type": "pwa-chrome",
9
+ "type": "chrome",
10
10
  "request": "launch",
11
11
  "name": "Debug #{GROK_HOST_ALIAS}",
12
12
  "url": "#{GROK_HOST}",
13
13
  "webRoot": "${workspaceFolder}"
14
14
  }
15
15
  ]
16
- }
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.8.2",
3
+ "version": "4.8.3",
4
4
  "description": "Utility to upload and publish packages to Datagrok",
5
5
  "homepage": "https://github.com/datagrok-ai/public/tree/master/tools#readme",
6
6
  "dependencies": {