Skip to content

Commit

Permalink
Chore: Update deps and workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Oct 28, 2024
1 parent b5659fb commit 59967c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/configure-pages@v3

- name: Install Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: "v2.0.2"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Cross Runtime Tests

on:
push:
branches: [main, dev, dev-9.0]
branches: [main, dev]
pull_request:
branches: [main, dev, dev-9.0]
branches: [main, dev]

jobs:
deno_ci:
Expand Down
10 changes: 5 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hexagon/croner",
"version": "9.0.1-dev.0",
"version": "9.0.1-dev.1",
"exports": "./src/croner.ts",
"lint": {
"include": ["src", "build"]
Expand All @@ -11,19 +11,19 @@
},
"tasks": {
"pre-commit": "deno fmt --check && deno lint && deno check src/croner.ts",
"test": "deno task build:clean && deno test --allow-read",
"build:prep": "deno cache --allow-scripts=npm:esbuild build/build.ts",
"test": "deno task build:prep && deno test --allow-read",
"build:prep": "deno install",
"build:clean": "deno run --allow-read --allow-write --allow-env build/build.ts -- clean",
"build:npm": "deno run --allow-read --allow-write --allow-env build/build.ts -- package",
"build:esbuild": "deno run --allow-read --allow-write --allow-env --allow-run build/build.ts -- build",
"build": "deno task build:clean && deno task test && deno task build:prep && deno task build:esbuild && deno task build:npm",
"build": "deno task build:clean && deno task build:prep && deno test --allow-read && deno task build:esbuild && deno task build:npm",
"check-deps": "deno run -A jsr:@check/deps"
},
"imports": {
"@cross/fs": "jsr:@cross/fs@~0.1.11",
"@cross/test": "jsr:@cross/test@~0.0.9",
"@std/assert": "jsr:@std/assert@~1.0.6",
"@std/path": "jsr:@std/path@~1.0.6",
"@std/path": "jsr:@std/path@~1.0.7",
"esbuild": "npm:esbuild@~0.24.0",
"esbuild-plugin-d.ts": "npm:esbuild-plugin-d.ts@~1.3.1"
},
Expand Down

0 comments on commit 59967c2

Please sign in to comment.