@sveltejs/kit 1.0.0-next.351 → 1.0.0-next.352

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.
@@ -63,7 +63,10 @@ const sveltekit = function (svelte_config) {
63
63
  port: 3000,
64
64
  strictPort: true,
65
65
  watch: {
66
- ignored: [`${kit_config.outDir}/**`, `!${kit_config.outDir}/generated/**`]
66
+ ignored: [
67
+ // Ignore all siblings of config.kit.outDir/generated
68
+ `${posixify(kit_config.outDir)}/!(generated)`
69
+ ]
67
70
  }
68
71
  }
69
72
  },
package/dist/cli.js CHANGED
@@ -811,7 +811,7 @@ async function launch(port, https, base) {
811
811
  exec(`${cmd} ${https ? 'https' : 'http'}://localhost:${port}${base}`);
812
812
  }
813
813
 
814
- const prog = sade('svelte-kit').version('1.0.0-next.351');
814
+ const prog = sade('svelte-kit').version('1.0.0-next.352');
815
815
 
816
816
  prog
817
817
  .command('dev')
@@ -1051,7 +1051,7 @@ prog.parse(process.argv, { unknown: (arg) => `Unknown option: ${arg}` });
1051
1051
  function welcome({ port, host, https, open, base, loose, allow, cwd }) {
1052
1052
  if (open) launch(port, https, base);
1053
1053
 
1054
- console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.351'}\n`));
1054
+ console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.352'}\n`));
1055
1055
 
1056
1056
  const protocol = https ? 'https:' : 'http:';
1057
1057
  const exposed = typeof host !== 'undefined' && host !== 'localhost' && host !== '127.0.0.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.0.0-next.351",
3
+ "version": "1.0.0-next.352",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",