@10stars/config 15.0.12 → 15.0.13
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 +3 -3
- package/src/vscode-config.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@10stars/config",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"bin": {
|
|
6
6
|
"config": "./src/index.ts"
|
|
@@ -17,14 +17,14 @@
|
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@10stars/oxlint-plugin-react-hooks": "^1.0.
|
|
20
|
+
"@10stars/oxlint-plugin-react-hooks": "^1.0.5",
|
|
21
21
|
"@oxc-node/core": "0.0.35",
|
|
22
22
|
"@types/node": "^24.0.0",
|
|
23
23
|
"@types/react": "^19.0.0",
|
|
24
24
|
"husky": "^9.0.0",
|
|
25
25
|
"oxfmt": "0.21.0",
|
|
26
26
|
"oxlint": "1.36.0",
|
|
27
|
-
"oxlint-tsgolint": "0.10.
|
|
27
|
+
"oxlint-tsgolint": "0.10.1",
|
|
28
28
|
"tsx": "^4.21.0",
|
|
29
29
|
"type-fest": "^5.0.0",
|
|
30
30
|
"typescript": "~5.9.3"
|
package/src/vscode-config.ts
CHANGED
|
@@ -108,8 +108,8 @@ export const setupVSCode = async (cwd: string) => {
|
|
|
108
108
|
|
|
109
109
|
const sortedSettings: Record<string, unknown> = sortObjectKeys(settingsJson)
|
|
110
110
|
|
|
111
|
-
if (existingSettings.
|
|
112
|
-
sortedSettings.
|
|
111
|
+
if (existingSettings["serverlessConsole.services"]) {
|
|
112
|
+
sortedSettings["serverlessConsole.services"] = existingSettings["serverlessConsole.services"] // Add serverlessConsole.services last (after sorting) to keep it at the bottom
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
await fs.writeFile(settingsPath, JSON.stringify(sortedSettings, null, 2) + "\n")
|