@s-ui/bundler 9.50.0 → 9.51.0

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.
@@ -75,7 +75,10 @@ const start = async ({config = webpackConfig, packagesToLink = program.opts().li
75
75
  linkAll,
76
76
  packagesToLink
77
77
  })
78
- nextConfig.cache.version = version
78
+
79
+ if (nextConfig.cache) {
80
+ nextConfig.cache.version = version
81
+ }
79
82
 
80
83
  const compiler = createCompiler(nextConfig, urls)
81
84
  const serverConfig = createDevServerConfig(nextConfig, urls.lanUrlForConfig)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@s-ui/bundler",
3
- "version": "9.50.0",
3
+ "version": "9.51.0",
4
4
  "description": "Config-free bundler for ES6 React apps.",
5
5
  "bin": {
6
6
  "sui-bundler": "./bin/sui-bundler.js"