@grantcodes/style-dictionary 1.0.0 → 1.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 +7 -0
- package/{build → dist}/css/default/style-dictionary.css +1 -1
- package/{build → dist}/css/todomap/style-dictionary.css +1 -1
- package/{build → dist}/js/default/style-dictionary.js +1 -1
- package/{build → dist}/js/todomap/style-dictionary.js +1 -1
- package/{build → dist}/scss/default/_style-dictionary.scss +1 -1
- package/{build → dist}/scss/todomap/_style-dictionary.scss +1 -1
- package/package.json +17 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.0](https://github.com/grantcodes/style-dictionary/compare/v1.0.0...v1.1.0) (2022-09-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add standard ([34f14f5](https://github.com/grantcodes/style-dictionary/commit/34f14f584edf9ed7a743fa0ef35753026932503b))
|
|
9
|
+
|
|
3
10
|
## 1.0.0 (2022-09-23)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grantcodes/style-dictionary",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "My personal style dictionary",
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./dist/js/default/style-dictionary.js",
|
|
6
6
|
"exports": {
|
|
7
|
-
"./default/js": "./
|
|
8
|
-
"./default/css": "./
|
|
9
|
-
"./default/scss": "./
|
|
10
|
-
"./todomap/js": "./
|
|
11
|
-
"./todomap/css": "./
|
|
12
|
-
"./todomap/scss": "./
|
|
7
|
+
"./default/js": "./dist/js/default/style-dictionary.js",
|
|
8
|
+
"./default/css": "./dist/css/default/style-dictionary.css",
|
|
9
|
+
"./default/scss": "./dist/scss/default/style-dictionary.scss",
|
|
10
|
+
"./todomap/js": "./dist/js/todomap/style-dictionary.js",
|
|
11
|
+
"./todomap/css": "./dist/css/todomap/style-dictionary.css",
|
|
12
|
+
"./todomap/scss": "./dist/scss/todomap/style-dictionary.scss",
|
|
13
|
+
"./assets/fonts/greycliff": "./assets/fonts/greycliff.css",
|
|
14
|
+
"./assets/fonts/quicksand": "./assets/fonts/quicksand.css"
|
|
13
15
|
},
|
|
14
16
|
"scripts": {
|
|
15
17
|
"build": "node ./build.js",
|
|
16
|
-
"clean": "rm -rf
|
|
18
|
+
"clean": "rm -rf dist",
|
|
17
19
|
"prepublishOnly": "npm run clean && npm run build",
|
|
18
|
-
"
|
|
20
|
+
"fix": "run-s fix:lint",
|
|
21
|
+
"fix:lint": "standard --fix tokens build.js",
|
|
22
|
+
"test": "run-s test:lint",
|
|
23
|
+
"test:lint": "standard src"
|
|
19
24
|
},
|
|
20
25
|
"author": {
|
|
21
26
|
"email": "mail@grant.codes",
|
|
@@ -25,6 +30,8 @@
|
|
|
25
30
|
"license": "MIT",
|
|
26
31
|
"devDependencies": {
|
|
27
32
|
"@grantcodes/commit": "^1.0.7",
|
|
33
|
+
"npm-run-all": "^4.1.5",
|
|
34
|
+
"standard": "^17.0.0",
|
|
28
35
|
"style-dictionary": "^3.1.1"
|
|
29
36
|
}
|
|
30
37
|
}
|