mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-10 07:50:57 +00:00
Instead of our homegrown grunt/shrinkwrap.js Fixes #13483. New npm-shrinkwrap.json is human-readable but still in a consistent/stable format. Should aid debugging, produce better diffs, and be less prone to merge conflicts
6 lines
129 B
Bash
Executable file
6 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
cd .. # /bootstrap/
|
|
cp test-infra/npm-shrinkwrap.json npm-shrinkwrap.json
|
|
npm install
|
|
rm npm-shrinkwrap.json
|