
The only downside is that installing your package takes a bit longer because it has to run the build step. Now your compiled assets are available, without needing to be checked into Git. As a result, whenever someone installs your package, npm will automatically grab all the dependencies and run your build step. It can do anything, including run your build script. In a nutshell, this is an npm script that will run before the package is installed. Thankfully, before I did that, I stumbled across a great article that introduced me to the prepare script in package.json. I thought the only option to work around this was to commit our dist folder to Git.
NPM INSTALL FROM GITHUB PACKAGE JSON INSTALL
That way npm gets your compiled assets and doesn’t need to know anything about your build process.īut when you install your package directly from Git, those compiled assets aren’t there, because we’ve added them to the gitignore file. When you host your package on npm, you explicitly run a publish command, which runs locally and has access to your compiled assets. Use the “prepare” script to build your library

Create a GitHub “Machine User” with read-only access.Allow your server to access your private Git-hosted npm package.Use the “prepare” script to build your library.


NPM INSTALL FROM GITHUB PACKAGE JSON DOWNLOAD
You could simply provide download links for the CSS and other assets, but then your users can’t easily get any updates to the pattern library. So you’ve got a pattern library: Congratulations! The next step is making it possible for other people to use those patterns.
