@sveltejs/kit 1.0.0-next.173 → 1.0.0-next.174
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/index6.js +1 -0
- package/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/chunks/index6.js
CHANGED
|
@@ -15449,6 +15449,7 @@ function strip_lang_tags(content) {
|
|
|
15449
15449
|
'g'
|
|
15450
15450
|
);
|
|
15451
15451
|
content = content.replace(regexp, (tag, attributes) => {
|
|
15452
|
+
if (!attributes) return tag;
|
|
15452
15453
|
const idx = tag.indexOf(attributes);
|
|
15453
15454
|
return (
|
|
15454
15455
|
tag.substring(0, idx) +
|
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.174');
|
|
821
821
|
|
|
822
822
|
prog
|
|
823
823
|
.command('dev')
|
|
@@ -960,7 +960,7 @@ async function check_port(port) {
|
|
|
960
960
|
function welcome({ port, host, https, open }) {
|
|
961
961
|
if (open) launch(port, https);
|
|
962
962
|
|
|
963
|
-
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.
|
|
963
|
+
console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.174'}\n`));
|
|
964
964
|
|
|
965
965
|
const protocol = https ? 'https:' : 'http:';
|
|
966
966
|
const exposed = host !== 'localhost' && host !== '127.0.0.1';
|