mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-01 15:34:53 +02:00
15 lines
247 B
Bash
Executable file
15 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
npm install
|
|
npm rebuild
|
|
dir=./registrar/assets
|
|
if [ -d "$dir" ]
|
|
then
|
|
echo "Compiling USWDS assets"
|
|
npx gulp copyAssets
|
|
npx gulp compile
|
|
else
|
|
echo "Initial USWDS assets build"
|
|
npx gulp init
|
|
npx gulp compile
|
|
fi
|
|
npx gulp watch
|