@adobe/spectrum-tokens 0.0.0-tabs-20230503165321

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/manifest.json ADDED
@@ -0,0 +1,5 @@
1
+ [
2
+ "src/color-aliases.json", "src/color-component.json",
3
+ "src/color-palette.json", "src/layout-component.json", "src/layout.json",
4
+ "src/semantic-color-palette.json", "src/typography.json"
5
+ ]
package/moon.yml ADDED
@@ -0,0 +1,73 @@
1
+ # Copyright 2023 Adobe. All rights reserved.
2
+ # This file is licensed to you under the Apache License, Version 2.0 (the "License");
3
+ # you may not use this file except in compliance with the License. You may obtain a copy
4
+ # of the License at http://www.apache.org/licenses/LICENSE-2.0
5
+
6
+ # Unless required by applicable law or agreed to in writing, software distributed under
7
+ # the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
8
+ # OF ANY KIND, either express or implied. See the License for the specific language
9
+ # governing permissions and limitations under the License.
10
+
11
+ fileGroups:
12
+ sources:
13
+ - "src/**/*"
14
+ tests:
15
+ - "test/**/*"
16
+ tasks:
17
+ build:
18
+ command:
19
+ - node
20
+ - tasks/buildSpectrumTokens.js
21
+ platform: node
22
+ inputs:
23
+ - "tasks/buildSpectrumTokens.js"
24
+ - "@globs(sources)"
25
+ outputs:
26
+ - "dist/"
27
+ buildManifest:
28
+ command:
29
+ - node
30
+ - tasks/buildManifest.js
31
+ platform: node
32
+ inputs:
33
+ - "tasks/buildManifest.js"
34
+ - "@globs(sources)"
35
+ outputs:
36
+ - "manifest.json"
37
+ clean:
38
+ command:
39
+ - rm
40
+ - -rf
41
+ - dist
42
+ local: true
43
+ platform: system
44
+ convert-excel:
45
+ command:
46
+ - node
47
+ - tasks/excel.js
48
+ local: true
49
+ platform: node
50
+ generateDiffResult:
51
+ command:
52
+ - node
53
+ - tasks/diff.js
54
+ deps:
55
+ - ~:build
56
+ platform: node
57
+ test:
58
+ command:
59
+ - npx
60
+ - ava
61
+ inputs:
62
+ - "tasks/**/*"
63
+ - "@globs(tests)"
64
+ - "@globs(sources)"
65
+ deps:
66
+ - ~:build
67
+ platform: node
68
+ test-watch:
69
+ command:
70
+ - ava
71
+ - --watch
72
+ local: true
73
+ platform: node
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@adobe/spectrum-tokens",
3
+ "version": "0.0.0-tabs-20230503165321",
4
+ "description": "Design tokens for Spectrum, Adobe's design system",
5
+ "type": "module",
6
+ "main": "tasks/buildSpectrumTokens.js",
7
+ "tokens": "dist/json/variables.json",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/adobe/spectrum-tokens.git"
11
+ },
12
+ "author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com/)",
13
+ "contributors": [
14
+ "Aaron Brownlee <brownlee@adobe.com> (https://misterbrownlee.com)"
15
+ ],
16
+ "license": "Apache-2.0",
17
+ "bugs": {
18
+ "url": "https://github.com/adobe/spectrum-tokens/issues"
19
+ },
20
+ "homepage": "https://github.com/adobe/spectrum-tokens/tree/main/packages/tokens#readme",
21
+ "devDependencies": {
22
+ "deep-object-diff": "^1.1.7",
23
+ "glob": "^8.1.0",
24
+ "glob-promise": "^6.0.2",
25
+ "node-fetch": "^2.6.7",
26
+ "style-dictionary": "^3.7.1",
27
+ "style-dictionary-sets": "^2.0.5",
28
+ "tar": "^6.1.13",
29
+ "tmp-promise": "^3.0.3"
30
+ },
31
+ "scripts": {}
32
+ }