Skip to content

Commit

Permalink
.github/workflows/validate.yml: use deno 2.x (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
montyanderson authored Dec 16, 2024
1 parent 1a7ea84 commit 258462a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: v2.x

- run: deno fmt --check

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
],
"exports": {
".": {
"import": "./dist/prodia.js",
"require": "./dist/prodia.js",
"types": "./dist/prodia.d.ts"
},
"./v2": {
"import": "./dist/v2/index.js",
"require": "./dist/v2/index.js",
"types": "./dist/v2/index.d.ts"
}
"import": "./dist/prodia.js",
"require": "./dist/prodia.js",
"types": "./dist/prodia.d.ts"
},
"./v2": {
"import": "./dist/v2/index.js",
"require": "./dist/v2/index.js",
"types": "./dist/v2/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
Expand Down

0 comments on commit 258462a

Please sign in to comment.