We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4865d5f commit 04b2c8cCopy full SHA for 04b2c8c
1 file changed
scripts/release.sh
@@ -1,5 +1,4 @@
1
#!/usr/bin/env bash
2
-# TODO: Copy README, LICENSE
3
# TODO: Update website
4
# TODO: --dry-run (changelog, no publish)
5
@@ -21,8 +20,12 @@ yarn run core:build
21
20
echo "[5] Building schematics"
22
yarn run schematics:build
23
24
-echo "[6] Pushing to remote"
+echo "[6] Copy README and LICENSE"
+cp README.md dist/ngqp/core
25
+cp LICENSE dist/ngqp/core
26
+
27
+echo "[7] Pushing to remote"
28
git push
29
-echo "[7] Publishing to npm"
30
+echo "[8] Publishing to npm"
31
cd dist/ngqp/core && npm publish --access public && cd -
0 commit comments