Skip to content

Commit

Permalink
feat: Bump dependencies to std@^1
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen committed Nov 28, 2024
1 parent 8ff12de commit 0020f3d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2
- run: deno fmt --check
- run: deno lint

tests:
name: ${{ matrix.kind }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -20,5 +20,5 @@ jobs:
os: [macOS-latest, windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2
- run: deno test --import-map test_import_map.json -A --doc
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2
- run: deno publish
10 changes: 5 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@denosaurs/plug",
"version": "1.0.6",
"version": "1.1.0",
"exports": {
".": "./mod.ts",
"./types": "./types.ts",
"./download": "./download.ts",
"./util": "./util.ts"
},
"imports": {
"@std/encoding/hex": "jsr:@std/encoding@^0.221.0/hex",
"@std/fmt/colors": "jsr:@std/fmt@^0.221.0/colors",
"@std/fs": "jsr:@std/fs@^0.221.0",
"@std/path": "jsr:@std/path@^0.221.0"
"@std/encoding/hex": "jsr:@std/encoding@^1/hex",
"@std/fmt/colors": "jsr:@std/fmt@^1/colors",
"@std/fs": "jsr:@std/fs@^1",
"@std/path": "jsr:@std/path@^1"
},
"lock": false
}
8 changes: 4 additions & 4 deletions test_import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"@denosaurs/plug/types": "./types.ts",
"@denosaurs/plug/download": "./download.ts",
"@denosaurs/plug/util": "./util.ts",
"@std/assert": "jsr:@std/assert@^0.221.0",
"@std/encoding/hex": "jsr:@std/encoding@^0.221.0/hex",
"@std/fmt/colors": "jsr:@std/fmt@^0.221.0/colors",
"@std/assert": "jsr:@std/assert@^1",
"@std/encoding/hex": "jsr:@std/encoding@^1/hex",
"@std/fmt/colors": "jsr:@std/fmt@^1/colors",
"@std/fs": "jsr:@std/fs@^0.221.0",
"@std/path": "jsr:@std/path@^0.221.0"
"@std/path": "jsr:@std/path@^1"
}
}

0 comments on commit 0020f3d

Please sign in to comment.