@moda/tokens 5.8.0 → 5.9.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +28 -26
package/README.md CHANGED
@@ -28,7 +28,7 @@ The source of truth for these values begins in SASS variables. Moda uses SASS (s
28
28
  Install the package:
29
29
 
30
30
  ```sh
31
- yarn add @moda/tokens --dev
31
+ npm install --save @moda/tokens
32
32
  ```
33
33
 
34
34
  Import the library and utilize the mixins or functions in your SCSS files:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moda/tokens",
3
- "version": "5.8.0",
3
+ "version": "5.9.1",
4
4
  "description": "Constant values for modaoperandi.com",
5
5
  "repository": "git@github.com:ModaOperandi/tokens.git",
6
6
  "author": "Moda Operandi",
@@ -15,42 +15,44 @@
15
15
  "lib/assets"
16
16
  ],
17
17
  "scripts": {
18
+ "build": "npm run clean && npm run export && tsc",
18
19
  "clean": "rm -rf ./dist",
20
+ "commitlint": "commitlint",
19
21
  "export": "tsc scripts/export.ts && node scripts/export.js",
20
- "build": "yarn clean && yarn export && yarn tsc",
21
- "predeploy": "yarn build && cd docs && yarn install && yarn run build",
22
- "start": "cd docs && yarn start",
22
+ "postpublish": "pinst --enable",
23
+ "predeploy": "npm run build && cd docs && npm install && npm run build",
24
+ "prepare": "husky install",
25
+ "prepublishOnly": "pinst --disable",
23
26
  "semantic-release": "semantic-release",
27
+ "start": "cd docs && npm run start",
24
28
  "test": "jest",
25
- "_postinstall": "husky install",
26
- "prepublishOnly": "pinst --disable",
27
- "postpublish": "pinst --enable"
29
+ "tsc": "tsc"
28
30
  },
29
31
  "devDependencies": {
30
- "@commitlint/cli": "^17.0.0",
31
- "@commitlint/config-conventional": "^17.0.0",
32
- "@jedmao/semantic-release-npm-github-config": "^1.0.9",
32
+ "@commitlint/cli": "^18.4.4",
33
+ "@commitlint/config-conventional": "^18.4.4",
33
34
  "@moda/node-sass-export": "^0.1.1",
34
- "@types/color-string": "^1.5.0",
35
- "@types/node": "^20.0.0",
35
+ "@types/color-string": "^1.5.5",
36
+ "@types/node": "^20.10.7",
36
37
  "@types/sass": "^1.43.1",
37
- "@typescript-eslint/eslint-plugin": "^5.30.0",
38
- "@typescript-eslint/parser": "^5.30.0",
38
+ "@typescript-eslint/eslint-plugin": "^6.18.0",
39
+ "@typescript-eslint/parser": "^6.18.0",
39
40
  "cz-conventional-changelog": "3.3.0",
40
- "eslint": "^8.18.0",
41
- "eslint-config-prettier": "^8.5.0",
42
- "eslint-plugin-import": "^2.26.0",
41
+ "eslint": "^8.56.0",
42
+ "eslint-config-prettier": "^9.1.0",
43
+ "eslint-plugin-import": "^2.29.1",
43
44
  "eslint-plugin-no-loops": "^0.3.0",
44
45
  "eslint-plugin-node": "^11.1.0",
45
- "eslint-plugin-prettier": "^4.2.1",
46
- "gh-pages": "5.0.0",
47
- "husky": "^8.0.1",
48
- "jest": "^29.0.2",
46
+ "eslint-plugin-prettier": "^5.1.2",
47
+ "gh-pages": "6.1.1",
48
+ "husky": "^8.0.3",
49
+ "jest": "^29.7.0",
49
50
  "pinst": "^3.0.0",
50
- "prettier": "^2.7.1",
51
- "sass": "^1.57.1",
52
- "semantic-release": "^21.0.0",
53
- "typescript": "^5.0.2"
51
+ "prettier": "^3.1.1",
52
+ "sass": "^1.69.7",
53
+ "semantic-release": "^22.0.12",
54
+ "semantic-release-npm-github": "^5.0.0",
55
+ "typescript": "^5.3.3"
54
56
  },
55
57
  "config": {
56
58
  "commitizen": {
@@ -61,6 +63,6 @@
61
63
  "access": "public"
62
64
  },
63
65
  "dependencies": {
64
- "color-string": "^1.5.5"
66
+ "color-string": "^1.9.1"
65
67
  }
66
68
  }