Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

fix: use --force when running npm pack #103

Merged
merged 1 commit into from
Mar 16, 2022
Merged
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 templates/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $({{ unscoped_package_name.replace("-", "_").to_uppercase() }}_INTERNAL_DEPENDEN
# re-compile its input sources. Since we don't have the list of sources available here,
# let's invoke pack only when the file does not exist.
{{ pack_archive_filename }}:
cd {{ package_directory }}; npm pack
cd {{ package_directory }}; npm pack --force

{{ unscoped_package_name.replace("-", "_").to_uppercase() }}_INTERNAL_NPM_DEPENDENCIES_EXCLUSIVE = {{ internal_npm_dependencies_exclusive.join(" \\\n") }}

Expand Down