graphile-config
Advanced tools
Comparing version 0.0.1-beta.12 to 0.0.1-beta.13
# graphile-config | ||
## 0.0.1-beta.13 | ||
### Patch Changes | ||
- [#2270](https://github.com/graphile/crystal/pull/2270) | ||
[`7580bc16a`](https://github.com/graphile/crystal/commit/7580bc16a050fd8d916c6dabe9d1ded980090349) | ||
Thanks [@benjie](https://github.com/benjie)! - Check that `process` exists | ||
before reading from it. | ||
## 0.0.1-beta.12 | ||
@@ -4,0 +13,0 @@ |
@@ -5,3 +5,3 @@ "use strict"; | ||
const functionality_js_1 = require("./functionality.js"); | ||
const isDev = process.env.GRAPHILE_ENV === "development"; | ||
const isDev = typeof process !== "undefined" && process.env.GRAPHILE_ENV === "development"; | ||
class AsyncHooks { | ||
@@ -8,0 +8,0 @@ constructor() { |
{ | ||
"name": "graphile-config", | ||
"version": "0.0.1-beta.12", | ||
"version": "0.0.1-beta.13", | ||
"description": "Standard plugin interface and helpers to be used across the Graphile stack.", | ||
@@ -5,0 +5,0 @@ "type": "commonjs", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
94825