Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: extend correct tsconfig.build.json #27

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading