@sveltejs/kit 1.0.0-next.257 → 1.0.0-next.258

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/cli.js CHANGED
@@ -995,7 +995,7 @@ async function launch(port, https) {
995
995
  exec(`${cmd} ${https ? 'https' : 'http'}://localhost:${port}`);
996
996
  }
997
997
 
998
- const prog = sade('svelte-kit').version('1.0.0-next.257');
998
+ const prog = sade('svelte-kit').version('1.0.0-next.258');
999
999
 
1000
1000
  prog
1001
1001
  .command('dev')
@@ -1153,7 +1153,7 @@ async function check_port(port) {
1153
1153
  function welcome({ port, host, https, open, loose, allow, cwd }) {
1154
1154
  if (open) launch(port, https);
1155
1155
 
1156
- console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.257'}\n`));
1156
+ console.log($.bold().cyan(`\n SvelteKit v${'1.0.0-next.258'}\n`));
1157
1157
 
1158
1158
  const protocol = https ? 'https:' : 'http:';
1159
1159
  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.257",
3
+ "version": "1.0.0-next.258",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",
@@ -125,7 +125,7 @@ declare module '$app/stores' {
125
125
  export const page: Readable<{
126
126
  url: URL;
127
127
  params: Record<string, string>;
128
- stuff: Record<string, any>;
128
+ stuff: App.Stuff;
129
129
  status: number;
130
130
  error: Error | null;
131
131
  }>;