mirror of
https://github.com/penpot/penpot.git
synced 2026-02-25 05:45:53 +00:00
- also removes docker files from source directories - minor assets reorganization on back (make it more production ready)
10 lines
200 B
Bash
Executable File
10 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source ~/.bashrc
|
|
|
|
npm install
|
|
npm run dist:clean || exit 1;
|
|
npm run dist:assets || exit 1;
|
|
npm run dist:main || exit 1;
|
|
npm run dist:view || exit 1;
|
|
npm run dist:worker || exit 1;
|