create-rstack 1.5.6 → 1.6.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 +1 -1
- package/template-eslint/react-js/package.json +2 -2
- package/template-eslint/react-ts/eslint.config.mjs +2 -2
- package/template-eslint/react-ts/package.json +3 -3
- package/template-eslint/svelte-js/package.json +2 -2
- package/template-eslint/svelte-ts/eslint.config.mjs +1 -1
- package/template-eslint/svelte-ts/package.json +4 -4
- package/template-eslint/vanilla-js/package.json +2 -2
- package/template-eslint/vanilla-ts/package.json +3 -3
- package/template-eslint/vue-js/package.json +2 -2
- package/template-eslint/vue-ts/package.json +2 -2
package/package.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "^9.
|
|
9
|
+
"@eslint/js": "^9.35.0",
|
|
10
|
+
"eslint": "^9.35.0",
|
|
11
11
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
12
12
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
13
13
|
"globals": "^16.3.0"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import js from '@eslint/js';
|
|
2
|
-
import { globalIgnores } from 'eslint/config';
|
|
2
|
+
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
3
3
|
import reactHooks from 'eslint-plugin-react-hooks';
|
|
4
4
|
import reactRefresh from 'eslint-plugin-react-refresh';
|
|
5
5
|
import globals from 'globals';
|
|
6
6
|
import tseslint from 'typescript-eslint';
|
|
7
7
|
|
|
8
|
-
export default
|
|
8
|
+
export default defineConfig([
|
|
9
9
|
globalIgnores(['dist']),
|
|
10
10
|
{
|
|
11
11
|
files: ['**/*.{ts,tsx}'],
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "^9.
|
|
9
|
+
"@eslint/js": "^9.35.0",
|
|
10
|
+
"eslint": "^9.35.0",
|
|
11
11
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
12
12
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
13
13
|
"globals": "^16.3.0",
|
|
14
|
-
"typescript-eslint": "^8.
|
|
14
|
+
"typescript-eslint": "^8.42.0"
|
|
15
15
|
}
|
|
16
16
|
}
|
|
@@ -3,7 +3,7 @@ import svelte from 'eslint-plugin-svelte';
|
|
|
3
3
|
import globals from 'globals';
|
|
4
4
|
import ts from 'typescript-eslint';
|
|
5
5
|
|
|
6
|
-
/** @type {import('eslint').Linter.
|
|
6
|
+
/** @type {import('eslint').Linter.Config[]} */
|
|
7
7
|
export default [
|
|
8
8
|
js.configs.recommended,
|
|
9
9
|
...ts.configs.recommended,
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "^9.
|
|
11
|
-
"eslint-plugin-svelte": "^3.
|
|
9
|
+
"@eslint/js": "^9.35.0",
|
|
10
|
+
"eslint": "^9.35.0",
|
|
11
|
+
"eslint-plugin-svelte": "^3.12.2",
|
|
12
12
|
"globals": "^16.3.0",
|
|
13
|
-
"typescript-eslint": "^8.
|
|
13
|
+
"typescript-eslint": "^8.42.0"
|
|
14
14
|
},
|
|
15
15
|
"type": "module"
|
|
16
16
|
}
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
10
|
-
"eslint": "^9.
|
|
10
|
+
"eslint": "^9.35.0",
|
|
11
11
|
"eslint-plugin-vue": "^10.4.0",
|
|
12
12
|
"globals": "^16.3.0",
|
|
13
|
-
"typescript-eslint": "^8.
|
|
13
|
+
"typescript-eslint": "^8.42.0"
|
|
14
14
|
}
|
|
15
15
|
}
|