@sveltejs/kit 1.0.0-next.194 → 1.0.0-next.195

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.
@@ -93,7 +93,8 @@ class Router {
93
93
  'sveltekit:scroll': scroll_state()
94
94
  };
95
95
  history.replaceState(new_state, document.title, window.location.href);
96
- }, 50);
96
+ // iOS scroll event intervals happen between 30-150ms, sometimes around 200ms
97
+ }, 200);
97
98
  });
98
99
 
99
100
  /** @param {MouseEvent|TouchEvent} event */
@@ -888,12 +888,7 @@ async function build_server(
888
888
 
889
889
  const default_config = {
890
890
  build: {
891
- target: 'es2020',
892
- rollupOptions: {
893
- output: {
894
- inlineDynamicImports: true
895
- }
896
- }
891
+ target: 'es2020'
897
892
  },
898
893
  server: {
899
894
  fs: {
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.194');
820
+ const prog = sade('svelte-kit').version('1.0.0-next.195');
821
821
 
822
822
  prog
823
823
  .command('dev')
@@ -982,7 +982,7 @@ async function check_port(port) {
982
982
  function welcome({ port, host, https, open, loose, allow, cwd }) {
983
983
  if (open) launch(port, https);
984
984
 
985
- console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.194'}\n`));
985
+ console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.195'}\n`));
986
986
 
987
987
  const protocol = https ? 'https:' : 'http:';
988
988
  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.194",
3
+ "version": "1.0.0-next.195",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",