2018-02-22 15:07:17 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Verify peer deps constraints and package.json before publishing to npm
|
|
|
|
# There should be no npm errors
|
|
|
|
|
|
|
|
mkdir tmp
|
|
|
|
cd tmp
|
|
|
|
npm init -y
|
2018-03-21 01:38:15 -04:00
|
|
|
npm install --save ../dist/packages-dist/* zone.js@0.8.10 rxjs@6.0.0-beta.1 typescript@2.7
|
2018-02-22 15:07:17 -05:00
|
|
|
cd ..
|
2018-03-21 01:38:15 -04:00
|
|
|
rm -rf ./tmp
|