build: remove "build.sh" script (#27937)

this script is now obsolete and not needed any more. yay!!!

PR Close #27937
This commit is contained in:
Paul Gschwendtner
2019-01-05 22:15:06 +01:00
committed by Andrew Kushnir
parent 302506e940
commit 1057b52def
5 changed files with 31 additions and 578 deletions

View File

@ -0,0 +1,11 @@
## Publishing
The `@angular/benchpress` package is not published together with the framework and therefore
the `npm_package` Bazel target does not have the `release-with-framework` tag.
In order to publish this package manually, one can run the following command after bumping
the `version` in the `package.json` of this package:
```
yarn bazel run //packages/benchpress:npm_package.publish
```

View File

@ -1,16 +0,0 @@
#!/usr/bin/env bash
set -ex
cd $(dirname $0)/../../..
ROOTDIR=$(pwd)
SRCDIR=${ROOTDIR}/packages/benchpress
DESTDIR=${ROOTDIR}/dist/packages-dist/benchpress
rm -fr ${DESTDIR}
echo "====== BUILDING... ====="
./build.sh --packages=core,benchpress --bundle=false
echo "====== PUBLISHING: ${DESTDIR} ====="
npm publish ${DESTDIR} --access public

View File

@ -1,7 +1,9 @@
# Legacy docs for @angular/compiler-cli Developers
*Note from Igor: This doc is likely outdated now but I'm keeping it around because offline_compiler_test.sh need to be converted to bazel/circleci (or deleted) and these docs seem relevant to anyone who needs to understand those tests. Once that's done this file can be deleted.*
*Note from Igor: This doc is likely outdated now but I'm keeping it around because
offline_compiler_test.sh need to be converted to bazel/circleci (or deleted) and these docs seem
relevant to anyone who needs to understand those tests. Once that's done this file can be deleted.*
```