Skip to content

Commit edf384f

Browse files
fix: extend correct tsconfig.build.json
Signed-off-by: Berend Sliedrecht <[email protected]>
1 parent a74e95b commit edf384f

File tree

8 files changed

+9
-7
lines changed

8 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
echo ${{ inputs.release-type }}
8080
git config --global user.name "Openwallet Foundation"
8181
82-
if [[ $(cat lerna.json | grep version | head -1 | grep dev) ]]; then
82+
if [[ $(cat lerna.json | grep version | head -1 | grep alpha) ]]; then
8383
pnpm publish from-package --no-push --no-private --yes --no-git-tag-version --dist-tag=alpha
8484
else
8585
pnpm publish from-package --no-push --no-private --yes --no-git-tag-version

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
askar_tmp_db
55
node_modules
66

7+
build
8+
79
packages/askar-nodejs/native
810
packages/askar-react-native/native
911
packages/askar-react-native/android/build

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"npmClient": "pnpm",
55
"command": {
66
"version": {

packages/askar-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-nodejs",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"license": "Apache-2.0",
55
"description": "Nodejs wrapper for Askar",
66
"main": "build/index",

packages/askar-nodejs/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.json",
2+
"extends": "../../tsconfig.build.json",
33
"compilerOptions": {
44
"outDir": "./build",
55
"types": ["node"]

packages/askar-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-react-native",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"license": "Apache-2.0",
55
"description": "React Native wrapper for Askar",
66
"main": "build/index",

packages/askar-react-native/tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "../../tsconfig.json",
2+
"extends": "../../tsconfig.build.json",
33
"compilerOptions": {
44
"outDir": "./build",
55
"skipLibCheck": true,

packages/askar-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openwallet-foundation/askar-shared",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"license": "Apache-2.0",
55
"description": "Shared library for using Askar with NodeJS and React Native",
66
"main": "build/index",

0 commit comments

Comments
 (0)