@maltjoy/core-vue 6.3.0 → 6.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maltjoy/core-vue",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -30,8 +30,8 @@
30
30
  "dependencies": {
31
31
  "@floating-ui/dom": "1.5.3",
32
32
  "@floating-ui/vue": "1.0.2",
33
- "@maltjoy/icons": "6.3.0",
34
- "@maltjoy/themes": "6.3.0",
33
+ "@maltjoy/icons": "6.4.0",
34
+ "@maltjoy/themes": "6.4.0",
35
35
  "@vue/shared": "3.5.13",
36
36
  "@vueuse/components": "10.8.0",
37
37
  "@vueuse/core": "10.8.0",
@@ -44,7 +44,8 @@
44
44
  "@chromatic-com/storybook": "4.1.3",
45
45
  "@eslint/js": "9.39.4",
46
46
  "@figma/code-connect": "1.3.13",
47
- "@maltjoy/eslint-rules": "6.3.0",
47
+ "@maltjoy/eslint-rules": "6.4.0",
48
+ "@maltjoy/stylelint-config": "6.4.0",
48
49
  "@rushstack/eslint-patch": "1.2.0",
49
50
  "@storybook/addon-a11y": "9.1.20",
50
51
  "@storybook/addon-docs": "9.1.20",
@@ -69,6 +70,7 @@
69
70
  "sass": "1.77.8",
70
71
  "storybook": "9.1.20",
71
72
  "storybook-addon-tag-badges": "2.0.4",
73
+ "stylelint": "17.14.1",
72
74
  "typescript": "5.3.3",
73
75
  "vite": "5.4.11",
74
76
  "vite-bundle-analyzer": "1.3.7",
@@ -90,9 +92,12 @@
90
92
  "test:dev": "vitest watch --dom",
91
93
  "test:update": "vitest run --dom -u",
92
94
  "lint": "eslint \"src/**/*.{ts,js,vue}\"",
93
- "lint:sonar": "mkdir -p reports/eslint && (eslint \"src/**/*.{ts,js,vue}\" --format json --output-file reports/eslint/eslint-report.json || test -f reports/eslint/eslint-report.json)",
95
+ "lint:sonar": "./scripts/lint-sonar.sh",
94
96
  "lint:fix": "eslint \"src/**/*.{ts,js,vue}\" --fix",
95
97
  "lint:staged": "eslint --fix",
98
+ "lint:style": "stylelint \"src/**/*.{scss,vue}\"",
99
+ "lint:style:fix": "stylelint \"src/**/*.{scss,vue}\" --fix",
100
+ "lint:style:staged": "stylelint --fix",
96
101
  "format": "prettier --write \"**/*.{js,ts,vue}\"",
97
102
  "format:staged": "prettier --write",
98
103
  "storybook": "pnpm prepare && storybook dev --port=33725",
@@ -104,6 +109,7 @@
104
109
  "generate:components-docs": "node src/tasks/ai/optimized-metadata-generator.mjs",
105
110
  "generate:components-docs:single": "node src/tasks/ai/optimized-metadata-generator.mjs --single",
106
111
  "generate:eslint-rules-docs": "node src/tasks/generate-eslint-rules-docs.mjs",
112
+ "generate:stylelint-rules-docs": "node src/tasks/generate-stylelint-rules-docs.mjs",
107
113
  "generate:manifest": "node src/tasks/generate-manifest.mjs",
108
114
  "verify:dts": "node src/tasks/verify-declaration-layout.mjs",
109
115
  "copy:fonticon": "node src/tasks/copy-fonticon.mjs"