Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
avchugaev committed Jan 10, 2021
1 parent 1dfeab0 commit be0d1d6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: npm ci

- name: Build package(s)
run: npm run build
run: npm run build:prod
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Publish to NPM
name: publish-to-npm

on:
push:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm run lint

- name: Build
run: npm run build
run: npm run build:prod

- name: Publish
run: npx semantic-release
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"version": "10.0.1",
"keywords": [
"angular",
"library",
"cqrs",
"eventbus",
"commandbus",
Expand All @@ -26,7 +27,8 @@
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"build": "ng build",
"build:prod": "ng build --prod",
"test": "ng test",
"test:watch": "ng test --watch",
"lint": "ng lint"
Expand Down

0 comments on commit be0d1d6

Please sign in to comment.