11 lines
258 B
Bash
Executable File
11 lines
258 B
Bash
Executable File
#!/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
|
|
npm install --save ../dist/packages-dist/* [email protected] [email protected] [email protected]
|
|
cd ..
|
|
rm -rf ./tmp |