Skip to content

Instantly share code, notes, and snippets.

@matthewhartman
Created April 23, 2020 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewhartman/8b79c666d2cd3edd1237e15bfa1e37bc to your computer and use it in GitHub Desktop.
Save matthewhartman/8b79c666d2cd3edd1237e15bfa1e37bc to your computer and use it in GitHub Desktop.
Generate A Unique JS Bundle Name
#!/bin/bash
rm -rf ./dist &&
parcel build src/index.html &&
VERSION=$(git rev-parse --short HEAD)
cp ./dist/src*.js ./dist/$VERSION.js
cp ./dist/src*.js ./dist/default.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment