@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 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
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  export const AssetFontGreycliffName = "Greycliff";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  export const AssetFontGreycliffName = "Greycliff";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  @mixin css-variables {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Fri, 23 Sep 2022 09:55:36 GMT
3
+ * Generated on Fri, 23 Sep 2022 11:25:07 GMT
4
4
  */
5
5
 
6
6
  @mixin css-variables {
package/package.json CHANGED
@@ -1,21 +1,26 @@
1
1
  {
2
2
  "name": "@grantcodes/style-dictionary",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "My personal style dictionary",
5
- "main": "./build/js/default/style-dictionary.js",
5
+ "main": "./dist/js/default/style-dictionary.js",
6
6
  "exports": {
7
- "./default/js": "./build/js/default/style-dictionary.js",
8
- "./default/css": "./build/css/default/style-dictionary.css",
9
- "./default/scss": "./build/scss/default/style-dictionary.scss",
10
- "./todomap/js": "./build/js/todomap/style-dictionary.js",
11
- "./todomap/css": "./build/css/todomap/style-dictionary.css",
12
- "./todomap/scss": "./build/scss/todomap/style-dictionary.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 build",
18
+ "clean": "rm -rf dist",
17
19
  "prepublishOnly": "npm run clean && npm run build",
18
- "test": "echo \"Error: no test specified\" && exit 1"
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
  }