Skip to content

Commit

Permalink
chore(package.json): updated app version to 1.0.0.rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nnkogift committed Apr 22, 2022
1 parent defed25 commit 4973425
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions build.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#! /usr/bin/bash
# Get app version from package.json
APP_VERSION=$(node -p "require('./package.json').version")


# Build the app
ng build --configuration production --aot

# Bundle the app
cd dist/action-tracker
zip -r -D action-tracker-$APP_VERSION.zip .
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "action-tracker",
"version": "1.0.0-beta.1",
"version": "1.0.0-rc.4",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4000",
"build": "ng build --configuration production --aot && cd dist/action-tracker && zip -r -D action-tracker.zip .",
"build": "./build.sh",
"test": "ng test --source-map=false",
"test:travis": "ng test --source-map=false --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.webapp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{
"version": "1.0.0-rc.3",
"version": "1.0.0-rc.4",
"name": "BNA Action Tracker",
"description": "BNA Action Tracker",
"appType": "APP",
Expand Down

0 comments on commit 4973425

Please sign in to comment.