@sveltejs/kit 1.0.0-next.191 → 1.0.0-next.192
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/chunks/index3.js +7 -3
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/chunks/index3.js
CHANGED
|
@@ -888,7 +888,12 @@ async function build_server(
|
|
|
888
888
|
|
|
889
889
|
const default_config = {
|
|
890
890
|
build: {
|
|
891
|
-
target: 'es2020'
|
|
891
|
+
target: 'es2020',
|
|
892
|
+
rollupOptions: {
|
|
893
|
+
output: {
|
|
894
|
+
inlineDynamicImports: true
|
|
895
|
+
}
|
|
896
|
+
}
|
|
892
897
|
},
|
|
893
898
|
server: {
|
|
894
899
|
fs: {
|
|
@@ -917,8 +922,7 @@ async function build_server(
|
|
|
917
922
|
format: 'esm',
|
|
918
923
|
entryFileNames: '[name].js',
|
|
919
924
|
chunkFileNames: 'chunks/[name]-[hash].js',
|
|
920
|
-
assetFileNames: 'assets/[name]-[hash][extname]'
|
|
921
|
-
inlineDynamicImports: true
|
|
925
|
+
assetFileNames: 'assets/[name]-[hash][extname]'
|
|
922
926
|
},
|
|
923
927
|
preserveEntrySignatures: 'strict'
|
|
924
928
|
}
|
package/dist/cli.js
CHANGED
|
@@ -817,7 +817,7 @@ async function launch(port, https) {
|
|
|
817
817
|
exec(`${cmd} ${https ? 'https' : 'http'}://localhost:${port}`);
|
|
818
818
|
}
|
|
819
819
|
|
|
820
|
-
const prog = sade('svelte-kit').version('1.0.0-next.
|
|
820
|
+
const prog = sade('svelte-kit').version('1.0.0-next.192');
|
|
821
821
|
|
|
822
822
|
prog
|
|
823
823
|
.command('dev')
|
|
@@ -978,7 +978,7 @@ async function check_port(port) {
|
|
|
978
978
|
function welcome({ port, host, https, open, allow, cwd }) {
|
|
979
979
|
if (open) launch(port, https);
|
|
980
980
|
|
|
981
|
-
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.
|
|
981
|
+
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.192'}\n`));
|
|
982
982
|
|
|
983
983
|
const protocol = https ? 'https:' : 'http:';
|
|
984
984
|
const exposed = typeof host !== 'undefined' && host !== 'localhost' && host !== '127.0.0.1';
|