sv 0.6.17 → 0.6.18
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/bin.js +1 -1
- package/dist/shared.json +10 -9
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -12,7 +12,7 @@ import { promisify } from "node:util";
|
|
|
12
12
|
|
|
13
13
|
//#region packages/cli/package.json
|
|
14
14
|
var name = "sv";
|
|
15
|
-
var version = "0.6.
|
|
15
|
+
var version = "0.6.18";
|
|
16
16
|
var type = "module";
|
|
17
17
|
var description = "A CLI for creating and updating SvelteKit projects";
|
|
18
18
|
var license = "MIT";
|
package/dist/shared.json
CHANGED
|
@@ -124,23 +124,24 @@
|
|
|
124
124
|
"contents": "{\n\t\"extends\": \"./.svelte-kit/tsconfig.json\",\n\t\"compilerOptions\": {\n\t\t\"allowJs\": true,\n\t\t\"checkJs\": true,\n\t\t\"esModuleInterop\": true,\n\t\t\"forceConsistentCasingInFileNames\": true,\n\t\t\"resolveJsonModule\": true,\n\t\t\"skipLibCheck\": true,\n\t\t\"sourceMap\": true,\n\t\t\"strict\": true,\n\t\t\"module\": \"NodeNext\",\n\t\t\"moduleResolution\": \"NodeNext\"\n\t}\n}\n"
|
|
125
125
|
},
|
|
126
126
|
{
|
|
127
|
-
"name": "
|
|
128
|
-
"include": [
|
|
129
|
-
"library"
|
|
130
|
-
],
|
|
127
|
+
"name": "vite.config.js",
|
|
128
|
+
"include": [],
|
|
131
129
|
"exclude": [
|
|
132
|
-
"typescript"
|
|
130
|
+
"typescript",
|
|
131
|
+
"checkjs"
|
|
133
132
|
],
|
|
134
|
-
"contents": "{
|
|
133
|
+
"contents": "import { sveltekit } from '@sveltejs/kit/vite';\nimport { defineConfig } from 'vite';\n\nexport default defineConfig({\n\tplugins: [sveltekit()]\n});\n"
|
|
135
134
|
},
|
|
136
135
|
{
|
|
137
|
-
"name": "
|
|
138
|
-
"include": [
|
|
136
|
+
"name": "jsconfig.json",
|
|
137
|
+
"include": [
|
|
138
|
+
"library"
|
|
139
|
+
],
|
|
139
140
|
"exclude": [
|
|
140
141
|
"typescript",
|
|
141
142
|
"checkjs"
|
|
142
143
|
],
|
|
143
|
-
"contents": "
|
|
144
|
+
"contents": "{\n\t\"extends\": \"./.svelte-kit/tsconfig.json\",\n\t\"compilerOptions\": {\n\t\t\"esModuleInterop\": true,\n\t\t\"forceConsistentCasingInFileNames\": true,\n\t\t\"resolveJsonModule\": true,\n\t\t\"skipLibCheck\": true,\n\t\t\"sourceMap\": true,\n\t\t\"module\": \"NodeNext\",\n\t\t\"moduleResolution\": \"NodeNext\"\n\t}\n}\n"
|
|
144
145
|
}
|
|
145
146
|
]
|
|
146
147
|
}
|