Skip to content

Commit

Permalink
packages/js 0.1.2: fix build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
merlindru committed Nov 23, 2023
1 parent 4d942bb commit 94177e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified packages/js/passkeys-next-auth-provider/bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions packages/js/passkeys-next-auth-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@teamhanko/passkeys-next-auth-provider",
"private": false,
"version": "0.1.1",
"version": "0.1.2",
"type": "module",
"module": "src/index.ts",
"main": "dist/index.js",
Expand All @@ -17,8 +17,8 @@
}
},
"scripts": {
"build": "bun run build:js & bun run build:dts",
"build:js": "bun build --target=node ./src/index.ts --outfile=dist/index.js",
"build": "bun run build:js && bun run build:dts",
"build:js": "bun build --target=node --outdir dist src/index.ts src/client.ts",
"build:dts": "tsc --emitDeclarationOnly --project tsconfig.dts.json"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/js/passkeys-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"require": "./dist/index.js"
}
},
"version": "0.1.1",
"version": "0.1.2",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun run build:js & bun run build:dts",
"build:js": "bun build --target=node ./src/index.ts --outfile=dist/index.js",
"build": "bun run build:js && bun run build:dts",
"build:js": "bun build --target=node --outdir dist src/index.ts",
"build:dts": "tsc --emitDeclarationOnly --project tsconfig.dts.json"
},
"devDependencies": {
Expand Down

0 comments on commit 94177e2

Please sign in to comment.