@constructive-io/graphql-env 3.2.1 → 3.2.2
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/esm/index.d.ts +0 -3
- package/esm/index.js +0 -3
- package/index.d.ts +0 -3
- package/index.js +3 -15
- package/package.json +3 -3
package/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export { loadConfigSync, loadConfigFileSync, loadConfigSyncFromDir, resolvePgpmPath, getConnEnvOptions, getDeploymentEnvOptions, getNodeEnv } from '@pgpmjs/env';
|
|
2
1
|
export { getEnvOptions, getConstructiveEnvOptions } from './merge';
|
|
3
2
|
export { getGraphQLEnvVars } from './env';
|
|
4
|
-
export type { ConstructiveOptions, ConstructiveGraphQLOptions } from '@constructive-io/graphql-types';
|
|
5
|
-
export { constructiveDefaults, constructiveGraphqlDefaults } from '@constructive-io/graphql-types';
|
package/esm/index.js
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
// Re-export core env utilities from @pgpmjs/env
|
|
2
|
-
export { loadConfigSync, loadConfigFileSync, loadConfigSyncFromDir, resolvePgpmPath, getConnEnvOptions, getDeploymentEnvOptions, getNodeEnv } from '@pgpmjs/env';
|
|
3
1
|
// Export Constructive-specific env functions
|
|
4
2
|
export { getEnvOptions, getConstructiveEnvOptions } from './merge';
|
|
5
3
|
export { getGraphQLEnvVars } from './env';
|
|
6
|
-
export { constructiveDefaults, constructiveGraphqlDefaults } from '@constructive-io/graphql-types';
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,2 @@
|
|
|
1
|
-
export { loadConfigSync, loadConfigFileSync, loadConfigSyncFromDir, resolvePgpmPath, getConnEnvOptions, getDeploymentEnvOptions, getNodeEnv } from '@pgpmjs/env';
|
|
2
1
|
export { getEnvOptions, getConstructiveEnvOptions } from './merge';
|
|
3
2
|
export { getGraphQLEnvVars } from './env';
|
|
4
|
-
export type { ConstructiveOptions, ConstructiveGraphQLOptions } from '@constructive-io/graphql-types';
|
|
5
|
-
export { constructiveDefaults, constructiveGraphqlDefaults } from '@constructive-io/graphql-types';
|
package/index.js
CHANGED
|
@@ -1,21 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
// Re-export core env utilities from @pgpmjs/env
|
|
5
|
-
var env_1 = require("@pgpmjs/env");
|
|
6
|
-
Object.defineProperty(exports, "loadConfigSync", { enumerable: true, get: function () { return env_1.loadConfigSync; } });
|
|
7
|
-
Object.defineProperty(exports, "loadConfigFileSync", { enumerable: true, get: function () { return env_1.loadConfigFileSync; } });
|
|
8
|
-
Object.defineProperty(exports, "loadConfigSyncFromDir", { enumerable: true, get: function () { return env_1.loadConfigSyncFromDir; } });
|
|
9
|
-
Object.defineProperty(exports, "resolvePgpmPath", { enumerable: true, get: function () { return env_1.resolvePgpmPath; } });
|
|
10
|
-
Object.defineProperty(exports, "getConnEnvOptions", { enumerable: true, get: function () { return env_1.getConnEnvOptions; } });
|
|
11
|
-
Object.defineProperty(exports, "getDeploymentEnvOptions", { enumerable: true, get: function () { return env_1.getDeploymentEnvOptions; } });
|
|
12
|
-
Object.defineProperty(exports, "getNodeEnv", { enumerable: true, get: function () { return env_1.getNodeEnv; } });
|
|
3
|
+
exports.getGraphQLEnvVars = exports.getConstructiveEnvOptions = exports.getEnvOptions = void 0;
|
|
13
4
|
// Export Constructive-specific env functions
|
|
14
5
|
var merge_1 = require("./merge");
|
|
15
6
|
Object.defineProperty(exports, "getEnvOptions", { enumerable: true, get: function () { return merge_1.getEnvOptions; } });
|
|
16
7
|
Object.defineProperty(exports, "getConstructiveEnvOptions", { enumerable: true, get: function () { return merge_1.getConstructiveEnvOptions; } });
|
|
17
|
-
var
|
|
18
|
-
Object.defineProperty(exports, "getGraphQLEnvVars", { enumerable: true, get: function () { return
|
|
19
|
-
var graphql_types_1 = require("@constructive-io/graphql-types");
|
|
20
|
-
Object.defineProperty(exports, "constructiveDefaults", { enumerable: true, get: function () { return graphql_types_1.constructiveDefaults; } });
|
|
21
|
-
Object.defineProperty(exports, "constructiveGraphqlDefaults", { enumerable: true, get: function () { return graphql_types_1.constructiveGraphqlDefaults; } });
|
|
8
|
+
var env_1 = require("./env");
|
|
9
|
+
Object.defineProperty(exports, "getGraphQLEnvVars", { enumerable: true, get: function () { return env_1.getGraphQLEnvVars; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructive-io/graphql-env",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive environment configuration with GraphQL/Graphile support",
|
|
6
6
|
"main": "index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@constructive-io/graphql-types": "^3.1.
|
|
32
|
+
"@constructive-io/graphql-types": "^3.1.2",
|
|
33
33
|
"@pgpmjs/env": "^2.13.0",
|
|
34
34
|
"deepmerge": "^4.3.1"
|
|
35
35
|
},
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"makage": "^0.1.12"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "1c9efe4ecd5a6b8daa14fe42214ecf8c5b664198"
|
|
48
48
|
}
|