Skip to content

Commit 852e873

Browse files
committed
refactor: more splitting up of app-config
1 parent b07a3b4 commit 852e873

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1571
-1435
lines changed

app-config-cli/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"!*.test.*"
2222
],
2323
"bin": {
24-
"app-config": "dist/index.js"
24+
"app-config": "dist/index.js",
25+
"app-config-secret-agent": "dist/start-secret-agent.js"
2526
},
2627
"scripts": {
2728
"build": "tsc -b",
@@ -33,7 +34,9 @@
3334
"prepublishOnly": "yarn clean && yarn build && yarn build:es"
3435
},
3536
"dependencies": {
36-
"@lcdev/app-config": "2"
37+
"@app-config/core": "2",
38+
"@app-config/node": "2",
39+
"execa": "5"
3740
},
3841
"devDependencies": {},
3942
"prettier": "@lcdev/prettier",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import execa from 'execa';
22
import { join } from 'path';
33
import { isWindows } from '@app-config/core';
4-
import { withTempFiles } from './test-util';
4+
import { withTempFiles } from '@app-config/test-utils';
55

66
const run = async (argv: string[], options?: execa.Options) =>
7-
execa('node', [join(__dirname, '..', './dist/cli.js'), ...argv], {
7+
execa('node', [join(__dirname, '..', './dist/index.js'), ...argv], {
88
stdout: 'pipe',
99
stderr: 'ignore',
1010
stdin: 'ignore',

0 commit comments

Comments
 (0)