7 lines
77 B
Bash
7 lines
77 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p ../out
|
|
cp package*.json ../out
|
|
npm pack
|
|
mv *.tgz ../out/
|