CommunityVotingApp/scripts/www_npm_install.sh

12 lines
347 B
Bash
Raw Normal View History

2020-04-22 14:20:00 -06:00
#!/bin/bash
# Copyright 2020 Netsyms Technologies.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
2020-04-22 14:20:00 -06:00
echo "Installing node modules in www/..."
cd www
2020-04-27 18:38:55 -06:00
npm install --no-bin-links --production
2020-04-22 14:20:00 -06:00
cd ..