@sveltejs/kit 1.0.0-next.208 → 1.0.0-next.209
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/assets/kit.js +1916 -0
- package/dist/chunks/index3.js +1 -1
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/chunks/index3.js
CHANGED
|
@@ -536,7 +536,7 @@ function get_methods(cwd, output, manifest_data) {
|
|
|
536
536
|
* }} [opts]
|
|
537
537
|
* @returns {Promise<import('types/internal').BuildData>}
|
|
538
538
|
*/
|
|
539
|
-
async function build(config, { cwd = process.cwd(), runtime = '
|
|
539
|
+
async function build(config, { cwd = process.cwd(), runtime = './kit.js' } = {}) {
|
|
540
540
|
const build_dir = path__default.resolve(cwd, `${SVELTE_KIT}/build`);
|
|
541
541
|
|
|
542
542
|
rimraf(build_dir);
|
package/dist/cli.js
CHANGED
|
@@ -887,7 +887,7 @@ async function launch(port, https) {
|
|
|
887
887
|
exec(`${cmd} ${https ? 'https' : 'http'}://localhost:${port}`);
|
|
888
888
|
}
|
|
889
889
|
|
|
890
|
-
const prog = sade('svelte-kit').version('1.0.0-next.
|
|
890
|
+
const prog = sade('svelte-kit').version('1.0.0-next.209');
|
|
891
891
|
|
|
892
892
|
prog
|
|
893
893
|
.command('dev')
|
|
@@ -1052,7 +1052,7 @@ async function check_port(port) {
|
|
|
1052
1052
|
function welcome({ port, host, https, open, loose, allow, cwd }) {
|
|
1053
1053
|
if (open) launch(port, https);
|
|
1054
1054
|
|
|
1055
|
-
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.
|
|
1055
|
+
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.209'}\n`));
|
|
1056
1056
|
|
|
1057
1057
|
const protocol = https ? 'https:' : 'http:';
|
|
1058
1058
|
const exposed = typeof host !== 'undefined' && host !== 'localhost' && host !== '127.0.0.1';
|