datagrok-tools 4.14.31 → 4.14.32

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.
@@ -4,13 +4,13 @@
4
4
  "version": "0.0.1",
5
5
  "description": "",
6
6
  "dependencies": {
7
- "datagrok-api": "^1.21.3",
7
+ "datagrok-api": "^1.26.0",
8
8
  "cash-dom": "^8.1.5",
9
9
  "dayjs": "^1.11.13",
10
- "@datagrok-libraries/utils": "^4.5.7"
10
+ "@datagrok-libraries/utils": "^4.6.0"
11
11
  },
12
12
  "devDependencies": {
13
- "datagrok-tools": "^4.14.20",
13
+ "datagrok-tools": "^4.14.32",
14
14
  "webpack": "^5.95.0",
15
15
  "webpack-cli": "^5.1.4"
16
16
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datagrok-tools",
3
- "version": "4.14.31",
3
+ "version": "4.14.32",
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": {
@@ -120,7 +120,7 @@ class FuncGeneratorPlugin {
120
120
  if (!name) return;
121
121
 
122
122
  const decoratorOptions = this._readDecoratorOptions(
123
- exp.arguments[0].properties,
123
+ exp.arguments[0]?.properties ?? [],
124
124
  );
125
125
 
126
126
  decoratorOptions.set('tags', [
@@ -187,7 +187,6 @@ class FuncGeneratorPlugin {
187
187
 
188
188
  _readDecoratorOptions(properties) {
189
189
  const resultMap = new Map();
190
- console.log(properties);
191
190
 
192
191
  for (const prop of properties)
193
192
  resultMap.set(prop.key.name ?? prop.key.value, this._evalLiteral(prop.value));