Skip to content

Commit 0cd2bc2

Browse files
committed
Build: Small updates
And NPM module updates.
1 parent d8317b2 commit 0cd2bc2

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"skipFiles": [
1212
"<node_internals>/**"
1313
],
14-
"program": "${workspaceFolder}/src/app.ts",
14+
"program": "${workspaceFolder}/src/main.ts",
1515
"cwd": "${workspaceFolder}/web",
1616
"args": [ "rpn/test.rpn" ]
1717
},

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"label": "Compile RPN",
2020
"type": "shell",
2121
"command": "node",
22-
"args": [ "../out/app.js", "rpn/test.rpn" ],
22+
"args": [ "../out/main.js", "rpn/test.rpn" ],
2323
"options": {
2424
"cwd": "${workspaceFolder}/web"
2525
},

clean.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
# This script removes all installed / compiled / generated artifacts for this project.
3+
# and remove installed NPM modules. To restore: npm install
4+
5+
# Change to script folder.
6+
cd "$(dirname "$0")"
7+
8+
echo "Cleaning..."
9+
10+
rm -fr ./out
11+
rm -fr ./node_modules

package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@types/node": "^22.8.7",
3+
"@types/node": "^22.10.2",
44
"source-map": "^0.7.4"
55
}
66
}

src/app.ts renamed to src/main.ts

File renamed without changes.

0 commit comments

Comments
 (0)