wirejs-resources 0.1.185 → 0.1.186

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.
Files changed (2) hide show
  1. package/dist/config.d.ts +10 -0
  2. package/package.json +1 -1
package/dist/config.d.ts CHANGED
@@ -45,6 +45,16 @@ export type DeploymentConfig = {
45
45
  bundleNodeModules?: string[];
46
46
  bundleFormat?: 'cjs' | 'esm';
47
47
  bundleMinify?: boolean;
48
+ /**
49
+ * Additional modules to keep external in SSG bundles.
50
+ *
51
+ * This is mainly useful when an SSG entrypoint contains dynamic imports that are
52
+ * only expected to execute during server-side generation and must remain unresolved
53
+ * in the browser hydration bundle.
54
+ *
55
+ * Node builtins are already externalized automatically for the browser SSG build.
56
+ */
57
+ ssgExternalModules?: string[];
48
58
  /**
49
59
  * Function URL auth mode for the API Lambda.
50
60
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-resources",
3
- "version": "0.1.185",
3
+ "version": "0.1.186",
4
4
  "description": "Basic services and server-side resources for wirejs apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",