1
1
mirror of https://github.com/primer/css.git synced 2024-11-23 11:27:26 +03:00
css/script/prepublish
2019-02-04 15:37:52 -08:00

11 lines
196 B
Bash
Executable File

#!/bin/bash
# generate the build directory
npm run dist
files=$(git ls-files src | sed -e 's#^src/##' | sed -e 's#/.*$##' | sort -u)
echo $files > publish-files.txt
cd src
cp -rv $files ..
cd -