9 lines
170 B
Bash
9 lines
170 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Script to create node_modules.tar.xz
|
||
|
# needs bower, webpack and webpack-cli installed
|
||
|
|
||
|
yarn install
|
||
|
yarn run build
|
||
|
tar cJf node_modules.tar.xz node_modules
|