Skip to content

Commit

Permalink
chore: upgrade deps (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Sep 21, 2023
1 parent f25f60a commit 7c1ace7
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [ubuntu-latest]
timeout-minutes: 10

steps:
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
"*.{js,ts,mjs,mts,cjs,cts,json}": "pnpm lint"
},
"dependencies": {
"@esbuild-kit/cjs-loader": "^2.4.2",
"@esbuild-kit/core-utils": "^3.3.0",
"@esbuild-kit/esm-loader": "^2.6.3"
"@esbuild-kit/cjs-loader": "^2.4.4",
"@esbuild-kit/core-utils": "^3.3.2",
"@esbuild-kit/esm-loader": "^2.6.5"
},
"optionalDependencies": {
"fsevents": "~2.3.3"
Expand Down
28 changes: 14 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/specs/wasm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default testSuite(async ({ describe }, node: NodeApis) => {
expect(nodeProcess.exitCode).toBe(1);

if (node.isCJS) {
expect(nodeProcess.stderr).toMatch('Do not know how to load path');
expect(nodeProcess.stderr).toMatch('Invalid or unexpected token');
} else {
expect(nodeProcess.stderr).toMatch('ERR_UNKNOWN_FILE_EXTENSION');
}
Expand All @@ -24,7 +24,7 @@ export default testSuite(async ({ describe }, node: NodeApis) => {

if (node.isCJS) {
expect(nodeProcess.exitCode).toBe(1);
expect(nodeProcess.stderr).toMatch('Do not know how to load path');
expect(nodeProcess.stderr).toMatch('Invalid or unexpected token');
} else {
expect(nodeProcess.exitCode).toBe(0);
expect(nodeProcess.stdout).toBe('1234');
Expand Down

0 comments on commit 7c1ace7

Please sign in to comment.