6 lines
120 B
Bash
6 lines
120 B
Bash
|
#!/bin/sh
|
||
|
if [ ! -d "/usr/src/app/node_modules" ]; then
|
||
|
echo "安装依赖文件..."
|
||
|
npm install
|
||
|
fi
|
||
|
npm run "$@"
|