mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
11 lines
224 B
Bash
Executable File
11 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# NOTE this script should only be executed from the root directory (not within "scripts")
|
|
|
|
rm -rf node_modules
|
|
rm -f npm-shrinkwrap.json
|
|
npm install
|
|
npm prune --production
|
|
npm shrinkwrap
|
|
rm -f package-lock.json
|