create-svelte
Advanced tools
Comparing version 2.0.0-next.64 to 2.0.0-next.65
# create-svelte | ||
## 2.0.0-next.65 | ||
### Patch Changes | ||
- 0befffb: Rename .svelte to .svelte-kit | ||
- c6fde99: Switch to ESM in config files | ||
## 2.0.0-next.64 | ||
@@ -4,0 +11,0 @@ |
@@ -50,3 +50,3 @@ { | ||
{ | ||
"name": "svelte.config.cjs", | ||
"name": "svelte.config.js", | ||
"include": [ | ||
@@ -56,3 +56,3 @@ "typescript" | ||
"exclude": [], | ||
"contents": "const preprocess = require('svelte-preprocess');\n\n/** @type {import('@sveltejs/kit').Config} */\nmodule.exports = {\n\t// Consult https://github.com/sveltejs/svelte-preprocess\n\t// for more information about preprocessors\n\tpreprocess: preprocess(),\n\n\tkit: {\n\t\t// hydrate the <div id=\"svelte\"> element in src/app.html\n\t\ttarget: '#svelte'\n\t}\n};\n" | ||
"contents": "import preprocess from 'svelte-preprocess';\n\n/** @type {import('@sveltejs/kit').Config} */\nconst config = {\n\t// Consult https://github.com/sveltejs/svelte-preprocess\n\t// for more information about preprocessors\n\tpreprocess: preprocess(),\n\n\tkit: {\n\t\t// hydrate the <div id=\"svelte\"> element in src/app.html\n\t\ttarget: '#svelte'\n\t}\n};\n\nexport default config;\n" | ||
}, | ||
@@ -76,3 +76,3 @@ { | ||
{ | ||
"name": "svelte.config.cjs", | ||
"name": "svelte.config.js", | ||
"include": [], | ||
@@ -82,3 +82,3 @@ "exclude": [ | ||
], | ||
"contents": "/** @type {import('@sveltejs/kit').Config} */\nmodule.exports = {\n\tkit: {\n\t\t// hydrate the <div id=\"svelte\"> element in src/app.html\n\t\ttarget: '#svelte'\n\t}\n};\n" | ||
"contents": "/** @type {import('@sveltejs/kit').Config} */\nconst config = {\n\tkit: {\n\t\t// hydrate the <div id=\"svelte\"> element in src/app.html\n\t\ttarget: '#svelte'\n\t}\n};\n\nexport default config;\n" | ||
}, | ||
@@ -85,0 +85,0 @@ { |
{ | ||
"name": "create-svelte", | ||
"version": "2.0.0-next.64", | ||
"version": "2.0.0-next.65", | ||
"bin": "./bin.js", | ||
@@ -10,3 +10,3 @@ "dependencies": { | ||
"devDependencies": { | ||
"@sveltejs/kit": "1.0.0-next.96", | ||
"@sveltejs/kit": "1.0.0-next.98", | ||
"@types/gitignore-parser": "^0.0.0", | ||
@@ -13,0 +13,0 @@ "@types/prettier": "^2.2.3", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
546028