You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If .npmignore doesn't exist, .gitignore is used, which is usually not what we want. For example, .gitignore in typescript projects will likely exclude *.js files from git, but these are required when we pack the module!
The text was updated successfully, but these errors were encountered:
This caused a runtime error of `Cannot find module './alarm'`
only to be discovered post-installation of the bundle, which is
extremely late in the game.
Related to #217
This caused a runtime error of `Cannot find module './alarm'`
only to be discovered post-installation of the bundle, which is
extremely late in the game.
Related to #217
If
.npmignore
doesn't exist,.gitignore
is used, which is usually not what we want. For example, .gitignore in typescript projects will likely exclude*.js
files from git, but these are required when we pack the module!The text was updated successfully, but these errors were encountered: