@wistia/vhs-design-tokens 2.1.3-beta.b72504b3.e13b06d → 2.1.4-beta.1383981d.e6cccb0
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/dist/index.cjs +3 -0
- package/{index.d.cts → dist/index.d.cts} +5 -4
- package/{index.d.mts → dist/index.d.mts} +5 -4
- package/dist/index.mjs +5 -0
- package/dist/js/colorMetadata.cjs +2292 -2688
- package/dist/js/colorMetadata.mjs +2292 -2688
- package/dist/js/designTokens.cjs +1 -1
- package/dist/js/designTokens.mjs +1 -1
- package/package.json +18 -30
- package/index.cjs +0 -4
- package/index.mjs +0 -4
package/dist/js/designTokens.cjs
CHANGED
package/dist/js/designTokens.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/vhs-design-tokens",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4-beta.1383981d.e6cccb0",
|
|
4
4
|
"description": "VHS design tokens",
|
|
5
|
-
"packageManager": "yarn@4.3.1",
|
|
6
5
|
"type": "module",
|
|
7
|
-
"main": "index.cjs",
|
|
8
|
-
"
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.cts",
|
|
9
9
|
"exports": {
|
|
10
10
|
"./package.json": "./package.json",
|
|
11
11
|
".": {
|
|
12
12
|
"import": {
|
|
13
|
-
"types": "./index.d.mts",
|
|
14
|
-
"default": "./index.mjs"
|
|
13
|
+
"types": "./dist/index.d.mts",
|
|
14
|
+
"default": "./dist/index.mjs"
|
|
15
15
|
},
|
|
16
16
|
"require": {
|
|
17
|
-
"types": "./index.d.cts",
|
|
18
|
-
"default": "./index.cjs"
|
|
17
|
+
"types": "./dist/index.d.cts",
|
|
18
|
+
"default": "./dist/index.cjs"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"./colorMetadata": {
|
|
@@ -28,39 +28,27 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
|
-
"index.mjs",
|
|
32
|
-
"index.d.mts",
|
|
33
|
-
"index.cjs",
|
|
34
|
-
"index.d.cts",
|
|
35
31
|
"dist/"
|
|
36
32
|
],
|
|
37
33
|
"scripts": {
|
|
38
|
-
"build": "style-dictionary build --config ./config.mjs && node ./scripts/
|
|
39
|
-
"build:watch": "onchange \"./tokens/**/*.yaml\" -i -- yarn run build",
|
|
34
|
+
"build": "style-dictionary build --config ./config.mjs && node ./scripts/postBuild.mjs",
|
|
40
35
|
"clean": "style-dictionary clean --config ./config.mjs",
|
|
41
|
-
"
|
|
36
|
+
"depcheck": "depcheck",
|
|
42
37
|
"lint": "node_modules/.bin/eslint --fix --report-unused-disable-directives --cache --ext mjs .",
|
|
43
|
-
"lint:debug": "node_modules/.bin/eslint --print-config ./index.
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"publint": "node ./scripts/publint.mjs"
|
|
38
|
+
"lint:debug": "node_modules/.bin/eslint --print-config ./packages/vhs/src/index.ts",
|
|
39
|
+
"prepack": "yarn run build",
|
|
40
|
+
"publint": "publint-check"
|
|
47
41
|
},
|
|
48
42
|
"dependencies": {
|
|
49
43
|
"@karibash/pixel-units": "^2.3.0"
|
|
50
44
|
},
|
|
51
45
|
"devDependencies": {
|
|
52
|
-
"@
|
|
53
|
-
"
|
|
54
|
-
"@wistia/eslint-config": "^0.35.0",
|
|
55
|
-
"husky": "^9.0.11",
|
|
46
|
+
"@repo/config": "workspace:*",
|
|
47
|
+
"depcheck": "^1.4.7",
|
|
56
48
|
"js-yaml": "^4.1.0",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"style-dictionary": "^4.0.0"
|
|
61
|
-
},
|
|
62
|
-
"resolutions": {
|
|
63
|
-
"postcss": ">=8.4.38"
|
|
49
|
+
"prettier": "^3.4.2",
|
|
50
|
+
"signale": "^1.4.0",
|
|
51
|
+
"style-dictionary": "^4.3.2"
|
|
64
52
|
},
|
|
65
53
|
"engines": {
|
|
66
54
|
"node": ">=18.0.0 || >=20.0.0"
|
package/index.cjs
DELETED
package/index.mjs
DELETED