Skip to content

Commit

Permalink
fix: extend correct tsconfig.build.json
Browse files Browse the repository at this point in the history
Signed-off-by: Berend Sliedrecht <[email protected]>
  • Loading branch information
berendsliedrecht committed Jan 28, 2025
1 parent 582233f commit 7e62643
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
echo ${{ inputs.release-type }}
git config --global user.name "Openwallet Foundation"
if [[ $(cat lerna.json | grep version | head -1 | grep dev) ]]; then
if [[ $(cat lerna.json | grep version | head -1 | grep alpha) ]]; then
pnpm release from-package --no-push --no-private --yes --no-git-tag-version --dist-tag=alpha
else
pnpm release from-package --no-push --no-private --yes --no-git-tag-version
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
askar_tmp_db
node_modules

build

packages/askar-nodejs/native
packages/askar-react-native/native
packages/askar-react-native/android/build
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.3.0",
"version": "0.3.1",
"npmClient": "pnpm",
"command": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-nodejs",
"version": "0.3.0",
"version": "0.3.1",
"license": "Apache-2.0",
"description": "Nodejs wrapper for Askar",
"main": "build/index",
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-nodejs/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./build",
"types": ["node"]
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-react-native",
"version": "0.3.0",
"version": "0.3.1",
"license": "Apache-2.0",
"description": "React Native wrapper for Askar",
"main": "build/index",
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-react-native/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"outDir": "./build",
"skipLibCheck": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/askar-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openwallet-foundation/askar-shared",
"version": "0.3.0",
"version": "0.3.1",
"license": "Apache-2.0",
"description": "Shared library for using Askar with NodeJS and React Native",
"main": "build/index",
Expand Down

0 comments on commit 7e62643

Please sign in to comment.