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: yarn.lock is missing when compiling the package as a dependency #24

Merged
merged 1 commit into from
Nov 25, 2024
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
4 changes: 0 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,5 @@ __tests__
/ios/Frameworks
/android/libs

# Excluding yarn.lock causes the local build to fail.
# This is because the build is done on the host machine.
!yarn.lock

# Go compilation needs .tool-versions
!.tool-versions
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fclean: clean

# - Node: Handle node_modules

node_modules: package.json yarn.lock
node_modules: package.json
(yarn && touch $@) || true

# - API : Handle API generation and cleaning
Expand Down