@sveltejs/kit 1.0.0-next.297 → 1.0.0-next.298

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.
@@ -168,7 +168,7 @@ async function create_plugin(config, cwd) {
168
168
  update_manifest();
169
169
 
170
170
  vite.watcher.on('add', update_manifest);
171
- vite.watcher.on('remove', update_manifest);
171
+ vite.watcher.on('unlink', update_manifest);
172
172
 
173
173
  const assets = config.kit.paths.assets ? SVELTE_KIT_ASSETS : config.kit.paths.base;
174
174
  const asset_server = sirv(config.kit.files.assets, {
package/dist/cli.js CHANGED
@@ -870,7 +870,7 @@ async function launch(port, https) {
870
870
  exec(`${cmd} ${https ? 'https' : 'http'}://localhost:${port}`);
871
871
  }
872
872
 
873
- const prog = sade('svelte-kit').version('1.0.0-next.297');
873
+ const prog = sade('svelte-kit').version('1.0.0-next.298');
874
874
 
875
875
  prog
876
876
  .command('dev')
@@ -1043,7 +1043,7 @@ async function check_port(port) {
1043
1043
  function welcome({ port, host, https, open, loose, allow, cwd }) {
1044
1044
  if (open) launch(port, https);
1045
1045
 
1046
- console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.297'}\n`));
1046
+ console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.298'}\n`));
1047
1047
 
1048
1048
  const protocol = https ? 'https:' : 'http:';
1049
1049
  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.297",
3
+ "version": "1.0.0-next.298",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",