Skip to content

Commit

Permalink
upgrade gh actions; try to fix tests by upgrading webpack; fix `deno …
Browse files Browse the repository at this point in the history
…fmt` since apparently it looks at json now
  • Loading branch information
cspotcode committed Oct 12, 2024
1 parent 80892d1 commit 9c8df50
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
steps:
- uses: denolib/setup-deno@v2
with:
deno-version: v1.6
deno-version: 2.x
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
.yarn/cache
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"np": "^6.2.0",
"ts-node": "^9.1.1",
"typescript": ">=4.1.3 <4.2",
"webpack": "^4.17.2",
"webpack": "^5.95.0",
"which": "^1.3.0"
},
"files": [
Expand Down
14 changes: 7 additions & 7 deletions scripts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"noEmit": true,
"target": "es5",
"module": "commonjs",
"lib": ["es2015"],
"rootDir": "."
}
"compilerOptions": {
"noEmit": true,
"target": "es5",
"module": "commonjs",
"lib": ["es2015"],
"rootDir": "."
}
}
18 changes: 9 additions & 9 deletions test/ts/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"sourceMap": false,
"noEmit": true
},
"files": ["usage.ts"]
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"sourceMap": false,
"noEmit": true
},
"files": ["usage.ts"]
}

0 comments on commit 9c8df50

Please sign in to comment.