Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement/savings account transactions #9

Open
wants to merge 11 commits into
base: advancly
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# lts/gallium node v19.7.0 (npm v9.5.0)
node-version: '19.7.0'
- name: Angular CLI install
run : npm install -g --silent @angular/cli@13.3.10
run : npm install -g --silent @angular/cli@14.2.12

- name: Npm install
run: npm install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ testem.log
# System Files
.DS_Store
Thumbs.db
.vscode/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN npm cache clear --force
RUN npm config set fetch-retry-maxtimeout 120000
RUN npm config set registry $NPM_REGISTRY_URL --location=global

RUN npm install --location=global @angular/cli@13.3.10
RUN npm install --location=global @angular/cli@14.2.12

RUN npm install

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The latest code is continuously deployed at https://openmf.github.io/web-app/ wh

2. Install [angular-cli](https://github.com/angular/angular-cli) globally.
```
npm install -g @angular/cli@13.3.10
npm install -g @angular/cli@14.2.12
```

3. Clone the project locally into your system.
Expand Down
4 changes: 1 addition & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
"optimization": false,
"sourceMap": true,
"namedChunks": true,
"outputHashing": "all",
"extractLicenses": true,
"aot": true,
"buildOptimizer": true,
Expand Down Expand Up @@ -230,6 +229,5 @@
}
}
}
},
"defaultProject": "mifosx-web-app"
}
}
Loading