Skip to content

Commit 308d4c8

Browse files
chore: update dependencies
1 parent 1ab07e5 commit 308d4c8

File tree

4 files changed

+66
-64
lines changed

4 files changed

+66
-64
lines changed

app/scripts/nmr-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# build the image ` docker build --tag nmr-cli . `
22
# run the container ` docker run -it nmr-cli bash `
33

4-
FROM mcr.microsoft.com/playwright:v1.49.0-jammy
4+
FROM mcr.microsoft.com/playwright:v1.51.0-jammy
55

66
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
77

app/scripts/nmr-cli/package-lock.json

Lines changed: 58 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/scripts/nmr-cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "test-node",
2+
"name": "nmr-cli",
33
"version": "1.0.0",
44
"description": "",
55
"main": "./build/index.js",
66
"scripts": {
77
"build": "tsc",
88
"start": "node build/index.js",
9-
"dev": "ts-node src/index.ts"
9+
"dev": "nmr-cli src/index.ts"
1010
},
1111
"keywords": [],
1212
"author": "",
@@ -18,13 +18,13 @@
1818
"filelist-utils": "^1.11.3",
1919
"nmr-load-save": "^3.1.3",
2020
"nmr-processing": "^17.0.0",
21-
"playwright": "^1.49.0",
21+
"playwright": "^1.51.0",
2222
"yargs": "^17.7.2"
2323
},
2424
"devDependencies": {
25-
"@types/node": "^22.10.1",
25+
"@types/node": "^22.13.10",
2626
"@types/yargs": "^17.0.33",
2727
"ts-node": "^10.9.2",
28-
"typescript": "^5.7.2"
28+
"typescript": "^5.8.2"
2929
}
3030
}

app/scripts/nmr-cli/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2020",
4-
"module": "CommonJS",
3+
"target": "ES2022",
4+
"module": "NodeNext",
55
"strict": true,
66
"esModuleInterop": true,
7-
"moduleResolution": "node",
87
"outDir": "./build",
98
"skipLibCheck": true,
109
},

0 commit comments

Comments
 (0)