@gapi/cli 1.8.185 → 1.8.187
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/main.js +2 -2
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
5
5
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
6
6
|
const core_1 = require("@rxdi/core");
|
|
7
|
-
const
|
|
7
|
+
const Yaml = require("yamljs");
|
|
8
8
|
const args_service_1 = require("./core/services/args.service");
|
|
9
9
|
const config_service_1 = require("./core/services/config.service");
|
|
10
10
|
const root_service_1 = require("./core/services/root.service");
|
|
@@ -15,7 +15,7 @@ const argsService = core_1.Container.get(args_service_1.ArgsService);
|
|
|
15
15
|
const configService = core_1.Container.get(config_service_1.ConfigService);
|
|
16
16
|
let config = {};
|
|
17
17
|
try {
|
|
18
|
-
config =
|
|
18
|
+
config = Yaml.load.bind(Yaml)('gapi-cli.conf.yml');
|
|
19
19
|
}
|
|
20
20
|
catch (e) {
|
|
21
21
|
console.error(e);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gapi/cli",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.187",
|
|
4
4
|
"description": "Gapi command line interface",
|
|
5
5
|
"main": "./dist/main.js",
|
|
6
6
|
"types": "./dist/main.d.ts",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"author": "Kristiyan Tachev (@Stradivario)",
|
|
36
36
|
"license": "MIT",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@gapi/schematics": "^1.8.
|
|
39
|
-
"@rxdi/compressor": "^0.7.
|
|
40
|
-
"@rxdi/core": "^0.7.
|
|
38
|
+
"@gapi/schematics": "^1.8.186",
|
|
39
|
+
"@rxdi/compressor": "^0.7.225",
|
|
40
|
+
"@rxdi/core": "^0.7.225",
|
|
41
41
|
"@zeit/ncc": "^0.22.1",
|
|
42
42
|
"apollo-codegen": "0.20.2",
|
|
43
43
|
"chalk": "2.4.2",
|