Skip to content

Instantly share code, notes, and snippets.

@apeckham
Created February 12, 2023 00:44
Show Gist options
  • Save apeckham/453b7bc0bba105258a171c0fd5b5817b to your computer and use it in GitHub Desktop.
Save apeckham/453b7bc0bba105258a171c0fd5b5817b to your computer and use it in GitHub Desktop.
check out Prebid and build a specific version with a list of modules
#!/usr/bin/env bash
set -euf -o pipefail
[ -d Prebid.js ] || git clone https://github.com/prebid/Prebid.js.git
cd Prebid.js
git checkout 7.36.0
npm ci
npx gulp build --modules=x,\
y,\
z
cp build/dist/prebid.js ../resources/js/prebid.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment