vue-linters-config 0.3.10 → 0.3.11
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/dist/index.js +5 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ function o(e, r) {
|
|
|
4
4
|
languageOptions: { parser: e, parserOptions: { parser: r } }
|
|
5
5
|
};
|
|
6
6
|
}
|
|
7
|
-
function
|
|
7
|
+
function t(e) {
|
|
8
8
|
return {
|
|
9
9
|
languageOptions: {
|
|
10
10
|
ecmaVersion: 2022,
|
|
@@ -13,9 +13,10 @@ function n(e) {
|
|
|
13
13
|
}
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
-
const
|
|
16
|
+
const n = {
|
|
17
17
|
ignores: [
|
|
18
18
|
"**/dist/",
|
|
19
|
+
"**/dev-dist/",
|
|
19
20
|
"**/coverage/",
|
|
20
21
|
"**/public/",
|
|
21
22
|
"**/storybook-static/",
|
|
@@ -330,8 +331,8 @@ const t = {
|
|
|
330
331
|
}
|
|
331
332
|
};
|
|
332
333
|
export {
|
|
333
|
-
|
|
334
|
-
|
|
334
|
+
n as ignores,
|
|
335
|
+
t as options,
|
|
335
336
|
o as parser,
|
|
336
337
|
a as prettier,
|
|
337
338
|
i as rules,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-linters-config",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Vue 3 linters config for eslint, prettier, stylelint",
|
|
6
6
|
"author": "Aleksandr Dergunov <dergunovs@mail.ru>",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"build": "vite build"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"vite": "6.0.
|
|
15
|
+
"vite": "6.0.11"
|
|
16
16
|
},
|
|
17
17
|
"engines": {
|
|
18
|
-
"npm": ">=
|
|
19
|
-
"node": ">=23.
|
|
18
|
+
"npm": ">=11.0.0",
|
|
19
|
+
"node": ">=23.6.0"
|
|
20
20
|
}
|
|
21
21
|
}
|