[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/devhttps/frontend/test/tools/clean-project [Back]  [Original]

#!/bin/bash
# This script can be used to clean a team city agent's checkout folder.

set -o xtrace
set -o nounset
set -o errexit

cd `dirname $0`/..

rm -rf node_modules
npm prune --production
npm cache clean

echo "Done cleaning."

Web Proxy Viewer  |  New URL  |  Original Page