everything-dev 0.0.8 → 0.0.10

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/package.json +1 -1
  2. package/src/plugin.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "everything-dev",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "bos": "./src/cli.ts"
package/src/plugin.ts CHANGED
@@ -345,6 +345,7 @@ export default createPlugin({
345
345
  env.NODE_ENV = "development";
346
346
  } else {
347
347
  env.NODE_ENV = "production";
348
+ env.DEPLOY = "true";
348
349
  if (!hasZephyrConfig(bosEnv)) {
349
350
  console.log(colors.dim(` ${icons.config} Zephyr tokens not configured - you may be prompted to login`));
350
351
  console.log(colors.dim(` Setup: ${ZEPHYR_DOCS_URL}`));