Skip to content

Commit c9205eb

Browse files
committed
refactor(package): changed package name to @angular-material-extensions/password-strength
1 parent 3db9f83 commit c9205eb

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ const argv = yargs
7878
.argv;
7979

8080
const config = {
81-
libraryName: 'ngx-material-password-strength',
82-
unscopedLibraryName: 'ngx-material-password-strength',
81+
libraryName: '@angular-material-extensions/password-strength',
82+
unscopedLibraryName: 'password-strength',
8383
allSrc: 'src/**/*',
8484
allTs: 'src/**/!(*.spec).ts',
8585
allSass: 'src/**/*.+(scss|sass)',

package.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "ngx-material-password-strength",
2+
"name": "@angular-material-extensions/password-strength",
33
"description": "Material password strength meter to indicate how secure is the provided password",
44
"version": "2.1.1",
5-
"homepage": "https://github.com/anthonynahas/ngx-material-password-strength",
5+
"homepage": "https://github.com/angular-material-extensions/password-strength",
66
"author": {
77
"name": "anthonynahas",
88
"url": "https://github.com/anthonynahas"
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git://github.com/anthonynahas/ngx-material-password-strength.git"
12+
"url": "git://github.com/angular-material-extensions/password-strength.git"
1313
},
1414
"license": "MIT",
1515
"keywords": [
@@ -21,15 +21,15 @@
2121
" strength-meter"
2222
],
2323
"bugs": {
24-
"url": "https://github.com/anthonynahas/ngx-material-password-strength/issues"
24+
"url": "https://github.com/angular-material-extensions/password-strength/issues"
2525
},
2626
"private": true,
2727
"scripts": {
2828
"build": "gulp build",
2929
"lint": "gulp lint",
3030
"test": " gulp test",
3131
"demo": " gulp build:demo",
32-
"check-travis": " travis-status --repo=anthonynahas/ngx-material-password-strength --branch=master --fail-pending || echo 'Not yet passing'"
32+
"check-travis": " travis-status --repo=angular-material-extensions/password-strength --branch=master --fail-pending || echo 'Not yet passing'"
3333
},
3434
"dependencies": {
3535
"@angular/animations": "6.0.5",
@@ -57,7 +57,7 @@
5757
"awesome-typescript-loader": "5.0.0",
5858
"codelyzer": "4.3.0",
5959
"commitplease": "3.2.0",
60-
"conventional-github-releaser": "3.1.2",
60+
"conventional-github-releaser": "2.0.2",
6161
"core-js": "2.5.7",
6262
"css-loader": "0.28.11",
6363
"cssnano": "3.10.0",
@@ -99,7 +99,7 @@
9999
"rollup-plugin-commonjs": "9.1.3",
100100
"rollup-plugin-node-resolve": "3.3.0",
101101
"rollup-plugin-sourcemaps": "0.4.2",
102-
"rollup-plugin-uglify": "4.0.0",
102+
"rollup-plugin-uglify": "3.0.0",
103103
"run-sequence": "2.2.1",
104104
"rxjs": "6.2.1",
105105
"sass-loader": "7.0.3",
@@ -151,7 +151,11 @@
151151
"awesome-typescript-loader",
152152
"codelyzer",
153153
"@angular/animations",
154-
"@types/jasmine"
154+
"@types/jasmine",
155+
"@types/jest",
156+
"@types/node",
157+
"conventional-github-releaser",
158+
"rollup-plugin-uglify"
155159
]
156160
},
157161
"commitplease": {

src/tsconfig.lib.es5.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"strictMetadataEmit": true,
1414
"skipTemplateCodegen": true,
1515
"genDir": "../tmp/lib-gen-dir/",
16-
"flatModuleOutFile": "ngx-material-password-strength.js",
17-
"flatModuleId": "ngx-material-password-strength",
16+
"flatModuleOutFile": "password-strength.js",
17+
"flatModuleId": "@angular-material-extensions/password-strength",
1818
"annotateForClosureCompiler": true
1919
}
2020
}

src/tsconfig.lib.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"target": "es2015",
66
"rootDir": "./",
77
"baseUrl": "",
8-
"types": [ "node"]
8+
"types": [
9+
"node"
10+
]
911
},
1012
"files": [
1113
"./index.ts"
@@ -14,8 +16,8 @@
1416
"strictMetadataEmit": true,
1517
"skipTemplateCodegen": true,
1618
"genDir": "../tmp/lib-gen-dir/",
17-
"flatModuleOutFile": "ngx-material-password-strength.js",
18-
"flatModuleId": "ngx-material-password-strength",
19+
"flatModuleOutFile": "password-strength.js",
20+
"flatModuleId": "@angular-material-extensions/password-strength",
1921
"annotateForClosureCompiler": true
2022
}
2123
}

0 commit comments

Comments
 (0)