std-env 1.3.0 → 1.3.1

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13,6 +13,6 @@ const env = {
13
13
  windows: /^win/.test(process.platform)
14
14
  }
15
15
 
16
- env.minimalCLI = env.ci || env.test || env.producion || !env.tty
16
+ env.minimalCLI = env.ci || env.test || env.production || !env.tty
17
17
 
18
18
  module.exports = env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "std-env",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Detect running environment of the current Node.js process",
5
5
  "main": "index.js",
6
6
  "scripts": {