Skip to content

Commit 52c4552

Browse files
committed
feat: rename path "lib" to "dist"
1 parent 7f9f56d commit 52c4552

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

lib/forever.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
while ($true) {
22
Start-Sleep -s 1
3-
& node lib/index.js
3+
& node dist/index.js
44
}

lib/isReady.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function isContainerLoggerReady(state) {
2323

2424
(() => {
2525
const containerId = process.argv[2];
26-
const state = JSON.parse(readFileSync('./lib/state.json').toString('utf-8'));
26+
const state = JSON.parse(readFileSync('./dist/state.json').toString('utf-8'));
2727
let isReady = false;
2828
if (containerId) {
2929
isReady = isContainerReady(state, containerId);

lib/isReady.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $CONTAINER_ID=$args[0]
66

77
if ( $CONTAINER_ID ) {
88
echo "checking if container:$CONTAINER_ID exists"
9-
if (select-string -Pattern $CONTAINER_ID -Path ./lib/state.json) {
9+
if (select-string -Pattern $CONTAINER_ID -Path ./dist/state.json) {
1010
echo "container $CONTAINER_ID is ready"
1111
Exit 0
1212
} else {
@@ -15,7 +15,7 @@ if ( $CONTAINER_ID ) {
1515
}
1616
} else {
1717
echo "checking if container logger is ready"
18-
if (select-string -Pattern "ready" -Path ./lib/state.json) {
18+
if (select-string -Pattern "ready" -Path ./dist/state.json) {
1919
echo "ready"
2020
Exit 0
2121
} else {

lib/isReady.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ CONTAINER_ID=$1
77

88
if [ -n "$CONTAINER_ID" ]; then
99
echo "checking if container: $CONTAINER_ID exists"
10-
grep -q $CONTAINER_ID ./lib/state.json
10+
grep -q $CONTAINER_ID ./dist/state.json
1111
else
1212
echo "checking if container logger is ready"
13-
grep -q "ready" ./lib/state.json
13+
grep -q "ready" ./dist/state.json
1414
fi
1515

1616

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"lint-fix": "eslint '*/**/*.js' --fix",
5050
"test": "node ./node_modules/mocha/bin/_mocha './{,!(node_modules)/**/}*.spec.js' --exit",
5151
"test:ci": "yarn test",
52-
"start": "node lib/index.js",
52+
"start": "node dist/index.js",
5353
"version": "exit 0",
5454
"build": "rm -rf dist && tsc -p tsconfig.json"
5555
}

0 commit comments

Comments
 (0)