Skip to content

Commit

Permalink
bump libpkgx, deno
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Sep 6, 2024
1 parent b8e5fbd commit e0a79cb
Show file tree
Hide file tree
Showing 4 changed files with 763 additions and 166 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.shellcode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: denoland/setup-deno@v1
with:
deno-version: 1.45.5
deno-version: ^1.46
- uses: actions/checkout@v4
- run: deno task compile
- uses: actions/upload-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1 # using ourself to install deno could compromise the tests
with:
deno-version: 1.45.5
deno-version: ^1.46
- run: deno cache **/*.test.ts
- run: deno task test --coverage=cov_profile --no-check
- run: deno coverage cov_profile --lcov --exclude=tests/ --output=cov_profile.lcov
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1 # using ourself to install deno could compromise the tests
with:
deno-version: 1.45.5
deno-version: ^1.46
- run: deno lint

typecheck:
Expand All @@ -68,5 +68,5 @@ jobs:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: 1.45.5
deno-version: ^1.46
- run: deno task typecheck
8 changes: 4 additions & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"typecheck": "deno check ./entrypoint.ts",
"compile": "deno compile --lock=deno.lock --allow-read --allow-write --allow-net --allow-run --allow-env --allow-ffi --unstable-ffi --unstable-fs --output \"$INIT_CWD/pkgx\" ./entrypoint.ts"
},
"pkgx": "deno~1.45.5",
"pkgx": "deno^1.46",
"lint": {
"exclude": ["src/**/*.test.ts"]
},
Expand All @@ -30,10 +30,10 @@
},
"imports": {
"is-what": "https://deno.land/x/[email protected]/src/index.ts",
"pkgx": "https://deno.land/x/libpkgx@v0.18.1/mod.ts",
"pkgx/": "https://deno.land/x/libpkgx@v0.18.1/src/",
"pkgx": "https://deno.land/x/libpkgx@v0.19.0/mod.ts",
"pkgx/": "https://deno.land/x/libpkgx@v0.19.0/src/",
"outdent": "https://deno.land/x/[email protected]/mod.ts",
"cliffy/": "https://deno.land/x/[email protected]/",
"deno/": "https://deno.land/std@0.221.0/" // cliffy is on 221 so we standardized on it
"deno/": "https://deno.land/std@0.224.0/"
}
}
Loading

0 comments on commit e0a79cb

Please sign in to comment.