mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 22:19:46 -06:00
16 lines
309 B
Bash
Executable File
16 lines
309 B
Bash
Executable File
## clean out build
|
|
rm -rf build
|
|
|
|
## copy over binary
|
|
mkdir -p build/bin
|
|
cp bin/cypress build/bin/cypress
|
|
|
|
## copy readme
|
|
cp NPM_README.md build/README.md
|
|
|
|
## copy .release.json
|
|
cp .release.json build/.release.json
|
|
|
|
## generate babel'd js index + lib
|
|
babel lib -d build/lib && babel index.js -o build/index.js
|