mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
3c4ba2a08c
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
7 lines
129 B
Bash
Executable File
7 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
|