Skip to content

Commit

Permalink
v5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Jul 27, 2021
1 parent d19879d commit c5fef12
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,21 @@ yarn add file:../single-spa-angular/lib
yarn build
yarn start
```

# Publishing

1. Modify `libs/single-spa-angular/package.json` to have the new `"version"`
2. Terminal commands

```sh
yarn build
cd lib
yarn publish # do not change the version - it already has correct version from step 1
cd ..
git add .
git commit -m "v1.2.5" # replace 1.2.5 with the newly published version
git tag -a v1.2.5 -m v.1.2.5 # replace 1.2.5 with the newly published version
git push
```

3. Create Github release
2 changes: 1 addition & 1 deletion libs/single-spa-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/ng-packagr/ng-package.schema.json",
"name": "single-spa-angular",
"version": "5.0.1",
"version": "5.0.2",
"description": "Helpers for building single-spa applications which use Angular 2",
"schematics": "./schematics/schematics.json",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# yarn lockfile v1


"@angular-builders/custom-webpack@^12.0.0-beta.0":
"@angular-builders/[email protected]":
version "12.0.0"
resolved "https://registry.yarnpkg.com/@angular-builders/custom-webpack/-/custom-webpack-12.0.0.tgz#370b4a8794d760a3e2cd6404a085d191ac8932ee"
integrity sha512-IvgSdapwopWpT2s34h18ubmQqADiA9jKQruhBVnQIWQP6Ro3mk1JIzIlOe09iKqpQH1zqYG6b4l3Gg/TjqJSaQ==
Expand Down

0 comments on commit c5fef12

Please sign in to comment.