mirror of
https://github.com/primer/css.git
synced 2024-11-28 13:12:16 +03:00
13 lines
205 B
Bash
Executable File
13 lines
205 B
Bash
Executable File
#!/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
|