@muraldevkit/ui-toolkit 2.88.0 → 2.89.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.
@@ -3,6 +3,9 @@
3
3
  font-size: var(--mrl-font-size-03);
4
4
  font-weight: var(--mrl-font-weight-02);
5
5
  margin-top: var(--mrl-spacing-02);
6
+ &:not(.helper) a {
7
+ color: inherit;
8
+ }
6
9
  &.error {
7
10
  color: var(--mrl-color-text-error);
8
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "2.88.0",
3
+ "version": "2.89.0",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -13,9 +13,10 @@
13
13
  "dist"
14
14
  ],
15
15
  "scripts": {
16
+ "prebuild": "rimraf dist",
16
17
  "build": "webpack --mode=production",
17
18
  "compile": "storybook build",
18
- "dev": "npm run compile && npm run serve",
19
+ "dev": "storybook dev -p 6006",
19
20
  "lint": "npm run lint:scripts && npm run lint:styles",
20
21
  "lint:config": "eslint '.storybook/*.{js,jsx,ts,tsx}'",
21
22
  "lint:config:fix": "eslint '.storybook/*.{js,jsx,ts,tsx}' --fix",
@@ -24,12 +25,9 @@
24
25
  "lint:styles": "stylelint src/components/**/*.{css,scss}",
25
26
  "lint:scripts:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
26
27
  "lint:styles:fix": "stylelint --fix src/components/**/*.{css,scss}",
27
- "prebuild": "rimraf dist",
28
28
  "create-component": "./scripts/createComponent.sh; npm run lint:fix;",
29
- "prepare": "husky install",
30
29
  "publish:local": "npm run build && npm pack",
31
30
  "release": "npx semantic-release",
32
- "serve": "storybook dev -p 6006",
33
31
  "test": "jest",
34
32
  "test:scan": "npx test-storybook --maxWorkers=2",
35
33
  "test:single": "jest $1",
@@ -37,7 +35,8 @@
37
35
  "test:watch": "jest --watchAll",
38
36
  "test:watch:file": "jest --watch $npm_config_file",
39
37
  "test:updateSnapshot": "jest --updateSnapshot",
40
- "yalc": "npm run build; yalc publish"
38
+ "yalc": "npm run build; yalc publish",
39
+ "lint-staged": "npx lint-staged --concurrent false"
41
40
  },
42
41
  "publishConfig": {
43
42
  "access": "public"
@@ -101,7 +100,6 @@
101
100
  "eslint-plugin-storybook": "0.8.0",
102
101
  "file-loader": "6.2.0",
103
102
  "html-webpack-plugin": "5.5.1",
104
- "husky": "8.0.0",
105
103
  "identity-obj-proxy": "3.0.0",
106
104
  "jest": "29.5.0",
107
105
  "jest-canvas-mock": "2.5.1",
@@ -115,6 +113,7 @@
115
113
  "sass": "1.62.1",
116
114
  "sass-loader": "13.2.2",
117
115
  "semantic-release": "19.0.5",
116
+ "semantic-release-monorepo": "7.0.5",
118
117
  "storybook": "8.0.10",
119
118
  "style-loader": "3.3.2",
120
119
  "stylelint": "14.16.1",
@@ -145,5 +144,11 @@
145
144
  "src/**": "prettier --ignore-unknown --write",
146
145
  "src/**/*.{ts,tsx,js,jsx}": "eslint --fix",
147
146
  "src/**/*.{css,sass,scss}": "stylelint --fix"
147
+ },
148
+ "release": {
149
+ "extends": [
150
+ "semantic-release-monorepo",
151
+ "./release.config"
152
+ ]
148
153
  }
149
154
  }