[config] fix: crash when installed as project dependency
Showing
... | ... | @@ -15,7 +15,7 @@ |
"automation" | ||
], | ||
"scripts": { | ||
"build": "tsc -p . && typescript-json-schema --noExtraProps tsconfig.json ConfigData > build/schema-config.json && chmod 755 build/schedic.js", | ||
"build": "typescript-json-schema --noExtraProps tsconfig.json ConfigData > src/schema-config.json && tsc -p . && chmod 755 build/schedic.js && cp src/schema-config.json build/schema-config.json", | ||
"lint": "tslint -c tslint.json 'src/**/*.ts'", | ||
"test": "mocha", | ||
"cover": "nyc --reporter=text --reporter=html --reporter=lcov mocha", | ||
... | ... | @@ -27,7 +27,6 @@ |
}, | ||
"dependencies": { | ||
"ajv": "^6.10.0", | ||
"app-root-path": "^2.1.0", | ||
"chalk": "^2.4.2", | ||
"js-yaml": "^3.12.2", | ||
"lodash": "^4.17.11", | ||
... | ... |
Please register or sign in to comment