1
1
mirror of https://github.com/primer/css.git synced 2024-12-12 10:47:14 +03:00
css/docs/script/now-build.sh

13 lines
205 B
Bash
Raw Normal View History

2019-12-17 01:08:45 +03:00
#!/bin/bash -e
# Build the base project so we can pull out the JSON data
cd ..
npm ci
npm run dist
cp -rf dist docs
# Now build the docs site using that data
cd docs
npm ci
CI=true npm run build-content