Skip to content

Commit 3b984be

Browse files
committed
add missing scripts
1 parent 026addd commit 3b984be

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

exercises/01.expressions-and-output/01.problem.hello-world/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"name": "exercises_01.expressions-and-output_01.problem.hello-world",
33
"type": "module",
44
"scripts": {
5-
"start": "npx @kentcdodds/log-module@latest ./index.ts",
6-
"test": "node --test index.test.ts"
5+
"start": "npx @kentcdodds/log-module ./index.ts",
6+
"start:watch": "npx @kentcdodds/log-module --watch ./index.ts",
7+
"test": "node --test index.test.ts",
8+
"test:watch": "echo \"watch does not work in exercise 1, try it in the other exercises though!\""
79
}
810
}

exercises/01.expressions-and-output/01.solution.hello-world/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"name": "exercises_01.expressions-and-output_01.solution.hello-world",
33
"type": "module",
44
"scripts": {
5-
"start": "npx @kentcdodds/log-module@latest ./index.ts",
6-
"test": "node --test index.test.ts"
5+
"start": "npx @kentcdodds/log-module ./index.ts",
6+
"start:watch": "npx @kentcdodds/log-module --watch ./index.ts",
7+
"test": "node --test index.test.ts",
8+
"test:watch": "echo \"watch does not work in exercise 1, try it in the other exercises though!\""
79
}
810
}

0 commit comments

Comments
 (0)