@dimensional-innovations/tool-config 1.2.3 → 1.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": "@dimensional-innovations/tool-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Universal configuration package for ESLint, Prettier, Stylelint, and semantic-release with auto-detection for React, Vue, Svelte, Solid, Astro, Angular, and more",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@eslint/compat": "^1.4.0",
|
|
68
68
|
"@eslint/js": "^9.37.0",
|
|
69
|
+
"@prettier/plugin-xml": "^3.4.2",
|
|
69
70
|
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
70
71
|
"@typescript-eslint/parser": "^8.46.0",
|
|
71
72
|
"astro-eslint-parser": "^1.2.2",
|
|
@@ -79,12 +80,15 @@
|
|
|
79
80
|
"eslint-plugin-vue": "^10.5.0",
|
|
80
81
|
"globals": "^16.4.0",
|
|
81
82
|
"postcss": "^8.4.49",
|
|
83
|
+
"postcss-html": "^1.8.0",
|
|
82
84
|
"postcss-scss": "^4.0.9",
|
|
83
85
|
"prettier": ">=3.0.0",
|
|
86
|
+
"prettier-plugin-vue": "^1.1.6",
|
|
84
87
|
"prompts": "^2.4.2",
|
|
85
88
|
"stylelint": ">=16.0.0",
|
|
86
89
|
"stylelint-config-standard": "^39.0.1",
|
|
87
90
|
"stylelint-config-standard-scss": "^16.0.0",
|
|
91
|
+
"stylelint-config-standard-vue": "^1.0.0",
|
|
88
92
|
"svelte-eslint-parser": "^1.3.3",
|
|
89
93
|
"typescript-eslint": "^8.46.0",
|
|
90
94
|
"vue-eslint-parser": "^10.2.0"
|
|
@@ -93,14 +97,12 @@
|
|
|
93
97
|
"astro": ">=3.0.0 || >=4.0.0 || >=5.0.0",
|
|
94
98
|
"eslint": ">=9.0.0",
|
|
95
99
|
"less": ">=4.0.0",
|
|
96
|
-
"postcss-html": ">=1.0.0",
|
|
97
100
|
"prettier": ">=3.0.0",
|
|
98
101
|
"prettier-plugin-astro": ">=0.12.0",
|
|
99
102
|
"prettier-plugin-svelte": ">=3.0.0",
|
|
100
103
|
"sass": ">=1.0.0",
|
|
101
104
|
"solid-js": ">=1.0.0",
|
|
102
105
|
"stylelint": ">=16.0.0",
|
|
103
|
-
"stylelint-config-standard-vue": ">=1.0.0",
|
|
104
106
|
"svelte": ">=3.0.0 || >=4.0.0 || >=5.0.0",
|
|
105
107
|
"tailwindcss": ">=3.0.0",
|
|
106
108
|
"typescript": ">=5.0.0"
|
|
@@ -115,9 +117,6 @@
|
|
|
115
117
|
"less": {
|
|
116
118
|
"optional": true
|
|
117
119
|
},
|
|
118
|
-
"postcss-html": {
|
|
119
|
-
"optional": true
|
|
120
|
-
},
|
|
121
120
|
"prettier": {
|
|
122
121
|
"optional": true
|
|
123
122
|
},
|
|
@@ -136,9 +135,6 @@
|
|
|
136
135
|
"stylelint": {
|
|
137
136
|
"optional": true
|
|
138
137
|
},
|
|
139
|
-
"stylelint-config-standard-vue": {
|
|
140
|
-
"optional": true
|
|
141
|
-
},
|
|
142
138
|
"svelte": {
|
|
143
139
|
"optional": true
|
|
144
140
|
},
|
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Configures Prettier for Vue 3 Single File Components (.vue files)
|
|
5
5
|
*
|
|
6
|
-
* Requires: prettier-plugin-vue
|
|
6
|
+
* Requires: prettier-plugin-vue and @prettier/plugin-xml (dependencies)
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
export default {
|
|
10
10
|
// Use Vue plugin for .vue files
|
|
11
|
-
|
|
11
|
+
// XML plugin is required as a peer dependency of prettier-plugin-vue
|
|
12
|
+
plugins: ['prettier-plugin-vue', '@prettier/plugin-xml'],
|
|
12
13
|
|
|
13
14
|
// Don't indent <script> and <style> tags
|
|
14
15
|
// This keeps them aligned with <template> for consistency
|