eddev 2.0.0-beta.53 → 2.0.0-beta.54
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/node/cli/cli.js
CHANGED
|
@@ -143,7 +143,7 @@ program
|
|
|
143
143
|
.option("-s, --serverless", 'Build in "serverless" mode', false)
|
|
144
144
|
.option("--verbose", "Show extra debugging info", false)
|
|
145
145
|
.action(async (options) => {
|
|
146
|
-
process.env["NODE_ENV"] = "
|
|
146
|
+
process.env["NODE_ENV"] = "production";
|
|
147
147
|
/** Ignore self-signed certificate errors in dev mode */
|
|
148
148
|
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = "0";
|
|
149
149
|
init(options.verbose);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.0.0-beta.
|
|
1
|
+
export declare const VERSION = "2.0.0-beta.54";
|
package/dist/node/cli/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "2.0.0-beta.
|
|
1
|
+
export const VERSION = "2.0.0-beta.54";
|