datagrok-tools 4.13.47 → 4.13.49
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/CHANGELOG.md +13 -0
- package/bin/commands/check.js +3 -0
- package/bin/grok.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Datagrok-tools changelog
|
|
2
2
|
|
|
3
|
+
## 4.13.49 (2024-12-26)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Removed load npm
|
|
8
|
+
* Added ability to set vue as external lib for check
|
|
9
|
+
|
|
10
|
+
## 4.13.48 (2024-12-25)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* Added load npm
|
|
15
|
+
|
|
3
16
|
## 4.13.47 (2024-12-25)
|
|
4
17
|
|
|
5
18
|
### Features
|
package/bin/commands/check.js
CHANGED
package/bin/grok.js
CHANGED
|
@@ -14,7 +14,7 @@ const commands = {
|
|
|
14
14
|
link: require('./commands/link').link,
|
|
15
15
|
publish: require('./commands/publish').publish,
|
|
16
16
|
test: require('./commands/test').test,
|
|
17
|
-
testall: require('./commands/test-all').testAll,
|
|
17
|
+
testall: require('./commands/test-all').testAll,
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
const command = argv['_'][0];
|
package/package.json
CHANGED