https://github.com/angular/angular
Raw File
Tip revision: 325ad7eb53b6e7fbbbbf41275a29be3e585d00c7 authored by Kara Erickson on 19 May 2020, 23:19:43 UTC
release: cut the v10.0.0-next.9 release
Tip revision: 325ad7e
test.sh
#!/bin/bash
set -e -x

NPM_BIN=$(npm bin)
PATH="$PATH:${NPM_BIN}"

rm -rf node_modules/lib1_built node_modules/lib2_built dist/

ngc -p tsconfig-lib1.json
cp src/package-lib1.json node_modules/lib1_built/package.json

ngc -p tsconfig-lib2.json
cp src/package-lib2.json node_modules/lib2_built/package.json

ngc -p tsconfig-app.json

node ./dist/src/main.js
back to top