rasengan 1.0.0-beta.47 → 1.0.0-beta.48
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/lib/esm/cli/index.js
CHANGED
|
@@ -109,7 +109,10 @@ program
|
|
|
109
109
|
return [4 /*yield*/, import(configPath)];
|
|
110
110
|
case 1:
|
|
111
111
|
appConfig = (_c.sent()).default;
|
|
112
|
-
|
|
112
|
+
console.log(appConfig);
|
|
113
|
+
return [4 /*yield*/, appConfig];
|
|
114
|
+
case 2:
|
|
115
|
+
server = (_c.sent()).server;
|
|
113
116
|
hostingStrategy = (_b = (_a = server === null || server === void 0 ? void 0 : server.production) === null || _a === void 0 ? void 0 : _a.hosting) !== null && _b !== void 0 ? _b : "custom";
|
|
114
117
|
execa("node", ["node_modules/rasengan/lib/esm/scripts/prepare-prod"], {
|
|
115
118
|
stdio: "inherit",
|
|
@@ -3,7 +3,7 @@ export type AppConfig = {
|
|
|
3
3
|
* Enable strict mode
|
|
4
4
|
* @default true
|
|
5
5
|
* @deprecated
|
|
6
|
-
* This option will be removed in the future, prefer using the "
|
|
6
|
+
* This option will be removed in the future, prefer using the "StrictMode" component from your App component props or from "react"
|
|
7
7
|
*/
|
|
8
8
|
reactStrictMode?: boolean;
|
|
9
9
|
/**
|