@adobe/spectrum-tokens 12.0.0-beta.9 → 12.1.0
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 +10 -2
- package/README.md +73 -4
- package/{config.js → commitlint.config.cjs} +5 -22
- package/dist/json/drover.json +1831 -0
- package/dist/json/variables.json +13227 -2656
- package/manifest.json +9 -0
- package/package.json +28 -12
- package/src/color-aliases.json +1197 -0
- package/src/color-component.json +155 -0
- package/{tokens/color.json → src/color-palette.json} +280 -240
- package/src/layout-component.json +3727 -0
- package/src/layout.json +1434 -0
- package/{tokens/color-semantic.json → src/semantic-color-palette.json} +85 -15
- package/src/typography.json +1140 -0
- package/tasks/buildManifest.js +8 -0
- package/tasks/buildSpectrumTokens.js +58 -0
- package/tasks/deprecateExpress.js +11 -0
- package/tasks/diff.js +106 -0
- package/tasks/lib/augmentExpressTokens.js +40 -0
- package/commitlint.config.js +0 -3
- package/tokens/color-alias.json +0 -132
- package/tokens/component-layout.json +0 -738
- package/tokens/layout.json +0 -908
package/manifest.json
ADDED
package/package.json
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spectrum-tokens",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "config.js",
|
|
7
|
+
"tokens": "dist/json/variables.json",
|
|
6
8
|
"scripts": {
|
|
7
|
-
"
|
|
9
|
+
"buildManifest": "node tasks/buildManifest.js",
|
|
10
|
+
"convert-excel": "node tasks/excel.js",
|
|
11
|
+
"test": "ava",
|
|
12
|
+
"test-watch": "ava --watch",
|
|
13
|
+
"build": "node tasks/buildSpectrumTokens.js",
|
|
14
|
+
"generateDiffResult": "yarn build && node tasks/diff.js",
|
|
8
15
|
"clean": "rm -rf dist",
|
|
9
16
|
"pre-commit": "lint-staged",
|
|
10
|
-
"prepare": "husky install && yarn
|
|
17
|
+
"prepare": "husky install && yarn build && yarn buildManifest",
|
|
11
18
|
"semantic-release": "semantic-release"
|
|
12
19
|
},
|
|
13
20
|
"repository": {
|
|
14
21
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/adobe/spectrum-tokens.git"
|
|
22
|
+
"url": "git+https://github.com/adobe/spectrum-tokens.git"
|
|
16
23
|
},
|
|
17
24
|
"author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com/)",
|
|
18
25
|
"contributors": [
|
|
@@ -24,14 +31,23 @@
|
|
|
24
31
|
},
|
|
25
32
|
"homepage": "https://github.com/adobe/spectrum-tokens#readme",
|
|
26
33
|
"devDependencies": {
|
|
27
|
-
"@commitlint/cli": "^
|
|
28
|
-
"@commitlint/config-conventional": "^
|
|
34
|
+
"@commitlint/cli": "^17.1.2",
|
|
35
|
+
"@commitlint/config-conventional": "^17.1.0",
|
|
29
36
|
"@semantic-release/changelog": "^6.0.1",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
37
|
+
"ava": "^5.2.0",
|
|
38
|
+
"convert-excel-to-json": "^1.7.0",
|
|
39
|
+
"deep-object-diff": "^1.1.7",
|
|
40
|
+
"glob": "^8.1.0",
|
|
41
|
+
"glob-promise": "^6.0.2",
|
|
42
|
+
"hex-to-rgba": "^2.0.1",
|
|
43
|
+
"husky": "^8.0.1",
|
|
44
|
+
"lint-staged": "^13.0.3",
|
|
45
|
+
"node-fetch": "^2.6.7",
|
|
46
|
+
"prettier": "^2.7.1",
|
|
47
|
+
"semantic-release": "^19.0.5",
|
|
48
|
+
"semantic-release-mirror-version": "^1.1.1",
|
|
49
|
+
"slugify": "^1.6.5",
|
|
50
|
+
"style-dictionary": "^3.7.1",
|
|
51
|
+
"style-dictionary-sets": "^2.0.5"
|
|
36
52
|
}
|
|
37
53
|
}
|