@symbo.ls/cli 2.11.70 → 2.11.122
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/convert.js +4 -2
- package/package.json +4 -3
package/bin/convert.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import * as esbuild from 'esbuild'
|
|
4
4
|
import { program } from './program.js'
|
|
5
|
-
import { convert } from '
|
|
5
|
+
import { convert } from 'kalduna'
|
|
6
6
|
import fs from 'fs'
|
|
7
7
|
import path from 'path'
|
|
8
8
|
import { JSDOM } from 'jsdom'
|
|
@@ -21,7 +21,9 @@ const EXCLUDED_FROM_INTERNAL_UIKIT = [
|
|
|
21
21
|
'splitTransition',
|
|
22
22
|
'transformDuration',
|
|
23
23
|
'transformShadow',
|
|
24
|
-
'transformTransition'
|
|
24
|
+
'transformTransition',
|
|
25
|
+
'DatePickerDay',
|
|
26
|
+
'DatePickerGrid',
|
|
25
27
|
]
|
|
26
28
|
const TMP_DIR_NAME = '.smbls_convert_tmp'
|
|
27
29
|
const TMP_DIR_PACKAGE_JSON_STR = JSON.stringify({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@symbo.ls/cli",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.122",
|
|
4
4
|
"description": "Fetch your Symbols configuration",
|
|
5
5
|
"main": "bin/fetch.js",
|
|
6
6
|
"author": "Symbols",
|
|
@@ -21,11 +21,12 @@
|
|
|
21
21
|
"commander": "latest",
|
|
22
22
|
"esbuild": "latest",
|
|
23
23
|
"jsdom": "^21.1.0",
|
|
24
|
+
"kalduna": "^1.0.1",
|
|
24
25
|
"node-fetch": "^3.1.0",
|
|
25
26
|
"v8-compile-cache": "^2.3.0"
|
|
26
27
|
},
|
|
27
28
|
"peerDependencies": {
|
|
28
|
-
"
|
|
29
|
+
"kalduna": "latest"
|
|
29
30
|
},
|
|
30
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "6b7b2d913124ea132fb2a1931ac327c01336f9fb"
|
|
31
32
|
}
|