Skip to content

Commit 85a196b

Browse files
authored
Merge 41c9d0e into e6c7739
2 parents e6c7739 + 41c9d0e commit 85a196b

File tree

13 files changed

+9517
-13640
lines changed

13 files changed

+9517
-13640
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [22.11.0]
17+
node-version: [22.12.0]
1818
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1919

2020
steps:
@@ -69,7 +69,7 @@ jobs:
6969

7070
strategy:
7171
matrix:
72-
node-version: [22.11.0]
72+
node-version: [22.12.0]
7373

7474
steps:
7575
- name: Checkout 🛎️

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![npm version](https://badge.fury.io/js/@eresearchqut%2Fangular-password-strength-meter.svg)](https://badge.fury.io/js/@eresearchqut%2Fangular-password-strength-meter)
33
[![Coverage Status](https://coveralls.io/repos/github/eresearchqut/angular-password-strength-meter/badge.svg?branch=master)](https://coveralls.io/repos/github/eresearchqut/angular-password-strength-meter/badge.svg?branch=master)
44

5-
# Password Strength Meter For Angular 19
5+
# Password Strength Meter For Angular 20
66

77
To display the strength of the password with a visual feedback.
88

@@ -26,7 +26,7 @@ Need lib for Vue.js? [Click here](https://github.com/antoantonyk/vue-password-st
2626

2727
## Get Started
2828

29-
**Step 1:** npm install (For Angular v19)
29+
**Step 1:** npm install (For Angular v20)
3030

3131
```sh
3232
npm install @zxcvbn-ts/core@^3.0.0 @zxcvbn-ts/language-en@^3.0.0 @eresearchqut/angular-password-strength-meter --save

angular.json

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:application",
18+
"builder": "@angular/build:application",
1919
"options": {
2020
"outputPath": "dist/password-strength-meter-showcase",
2121
"index": "projects/password-strength-meter-showcase/src/index.html",
@@ -57,7 +57,7 @@
5757
"defaultConfiguration": "production"
5858
},
5959
"serve": {
60-
"builder": "@angular-devkit/build-angular:dev-server",
60+
"builder": "@angular/build:dev-server",
6161
"configurations": {
6262
"production": {
6363
"buildTarget": "password-strength-meter-showcase:build:production"
@@ -69,13 +69,13 @@
6969
"defaultConfiguration": "development"
7070
},
7171
"extract-i18n": {
72-
"builder": "@angular-devkit/build-angular:extract-i18n",
72+
"builder": "@angular/build:extract-i18n",
7373
"options": {
7474
"buildTarget": "password-strength-meter-showcase:build"
7575
}
7676
},
7777
"test": {
78-
"builder": "@angular-devkit/build-angular:karma",
78+
"builder": "@angular/build:karma",
7979
"options": {
8080
"polyfills": ["zone.js", "zone.js/testing"],
8181
"tsConfig": "projects/password-strength-meter-showcase/tsconfig.spec.json",
@@ -109,7 +109,7 @@
109109
"prefix": "lib",
110110
"architect": {
111111
"build": {
112-
"builder": "@angular-devkit/build-angular:ng-packagr",
112+
"builder": "@angular/build:ng-packagr",
113113
"options": {
114114
"project": "projects/password-strength-meter/ng-package.json"
115115
},
@@ -124,7 +124,7 @@
124124
"defaultConfiguration": "production"
125125
},
126126
"test": {
127-
"builder": "@angular-devkit/build-angular:karma",
127+
"builder": "@angular/build:karma",
128128
"options": {
129129
"karmaConfig": "projects/password-strength-meter/karma.conf.js",
130130
"tsConfig": "projects/password-strength-meter/tsconfig.spec.json",
@@ -146,7 +146,29 @@
146146
},
147147
"schematics": {
148148
"@schematics/angular:component": {
149-
"style": "scss"
149+
"style": "scss",
150+
"type": "component"
151+
},
152+
"@schematics/angular:directive": {
153+
"type": "directive"
154+
},
155+
"@schematics/angular:service": {
156+
"type": "service"
157+
},
158+
"@schematics/angular:guard": {
159+
"typeSeparator": "."
160+
},
161+
"@schematics/angular:interceptor": {
162+
"typeSeparator": "."
163+
},
164+
"@schematics/angular:module": {
165+
"typeSeparator": "."
166+
},
167+
"@schematics/angular:pipe": {
168+
"typeSeparator": "."
169+
},
170+
"@schematics/angular:resolver": {
171+
"typeSeparator": "."
150172
}
151173
},
152174
"cli": {

0 commit comments

Comments
 (0)