Skip to content

Commit f5776d4

Browse files
authored
Merge pull request #178 from Zak-C/develop
Develop
2 parents e290a3a + 35e204b commit f5776d4

File tree

11 files changed

+9747
-11343
lines changed

11 files changed

+9747
-11343
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v2
8-
- name: Use Node.js 16.x
8+
- name: Use Node.js 20.x
99
uses: actions/setup-node@v1
1010
with:
11-
node-version: 16.x
11+
node-version: 20.x
1212

1313
- name: Setup
1414
run: npm ci

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Install ngx-loading via NPM, using the command below.
3030
npm install --save ngx-loading
3131
```
3232

33-
NOTE: Version 16 of this package requires Angular 16 as a dependency. If you are using an older version of Angular, please install the relevant version e.g. 2.0.1 for Angular 2:
33+
NOTE: Version 17 of this package requires Angular 17 as a dependency. If you are using an older version of Angular, please install the relevant version e.g. 2.0.1 for Angular 2:
3434

3535
```shell
3636
npm install --save [email protected]

angular.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,18 +120,18 @@
120120
"builder": "@angular-devkit/build-angular:dev-server",
121121
"configurations": {
122122
"production": {
123-
"browserTarget": "ngx-loading-sample-app:build:production"
123+
"buildTarget": "ngx-loading-sample-app:build:production"
124124
},
125125
"development": {
126-
"browserTarget": "ngx-loading-sample-app:build:development"
126+
"buildTarget": "ngx-loading-sample-app:build:development"
127127
}
128128
},
129129
"defaultConfiguration": "development"
130130
},
131131
"extract-i18n": {
132132
"builder": "@angular-devkit/build-angular:extract-i18n",
133133
"options": {
134-
"browserTarget": "ngx-loading-sample-app:build"
134+
"buildTarget": "ngx-loading-sample-app:build"
135135
}
136136
},
137137
"test": {

azure-pipelines.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
55

66
trigger:
7-
- master
8-
- develop
7+
- master
8+
- develop
99

1010
pool:
1111
vmImage: ubuntu-latest
1212

1313
steps:
14-
- task: NodeTool@0
15-
inputs:
16-
versionSpec: '16.13.1'
17-
displayName: 'Install Node.js'
14+
- task: NodeTool@0
15+
inputs:
16+
versionSpec: "20.11.0"
17+
displayName: "Install Node.js"
1818

19-
- script: |
20-
npm install -g @angular/cli
21-
npm install
22-
ng build ngx-loading
23-
displayName: 'npm install and build'
19+
- script: |
20+
npm install -g @angular/cli
21+
npm install
22+
ng build ngx-loading
23+
displayName: "npm install and build"

0 commit comments

Comments
 (0)