Skip to content

Commit

Permalink
Merge pull request #9 from bramanda48/develop
Browse files Browse the repository at this point in the history
Fix TypeError: Deno.dlopen is not a function
  • Loading branch information
bramanda48 authored Mar 21, 2024
2 parents 632ea69 + 87ab778 commit 7352704
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
deno-version: ${{ env.DENO_VERSION }}

- name: Update environement variable
run: cp .env.example .env
run: cp .env.example .env && ls -al

- name: Build release
run: deno task build
Expand Down
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"start": "deno run --allow-all --unstable-ffi dist/main.esm.js",
"dev": "deno run --allow-all --unstable-ffi --watch src/main.ts",
"deps": "deno cache --reload --lock=deno.lock --lock-write deps.ts build.ts",
"build": "deno run --allow-all build.ts",
"build": "deno run --allow-all --allow-ffi build.ts",
"test": "deno test --allow-all"
},
"imports": {
Expand Down

0 comments on commit 7352704

Please sign in to comment.