mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 06:37:36 -04:00
10 lines
225 B
Bash
Executable File
10 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
#? Package the app
|
|
|
|
rm -r dist/*
|
|
webpack --config webpack/webpack.config.production.js
|
|
# cp -r node_modules electron.js package.json dist/
|
|
cp electron.js package.json dist/
|
|
cd dist
|
|
NODE_ENV=production npm install
|