@sveltejs/kit 1.0.0-next.468 → 1.0.0-next.469

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "1.0.0-next.468",
3
+ "version": "1.0.0-next.469",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/sveltejs/kit",
@@ -105,7 +105,8 @@ export function get_default_build_config({ config, input, ssr, outDir }) {
105
105
  format: 'esm',
106
106
  entryFileNames: ssr ? '[name].js' : `${prefix}/[name]-[hash].js`,
107
107
  chunkFileNames: ssr ? 'chunks/[name].js' : `${prefix}/chunks/[name]-[hash].js`,
108
- assetFileNames: `${prefix}/assets/[name]-[hash][extname]`
108
+ assetFileNames: `${prefix}/assets/[name]-[hash][extname]`,
109
+ hoistTransitiveImports: false
109
110
  },
110
111
  preserveEntrySignatures: 'strict'
111
112
  },
@@ -133,7 +134,8 @@ export function get_default_build_config({ config, input, ssr, outDir }) {
133
134
  rollupOptions: {
134
135
  output: {
135
136
  entryFileNames: `${prefix}/workers/[name]-[hash].js`,
136
- chunkFileNames: `${prefix}/workers/chunks/[name]-[hash].js`
137
+ chunkFileNames: `${prefix}/workers/chunks/[name]-[hash].js`,
138
+ hoistTransitiveImports: false
137
139
  }
138
140
  }
139
141
  }