Skip to content

Commit 06260a7

Browse files
committed
Update dependencies
1 parent 1196ae4 commit 06260a7

File tree

5 files changed

+1258
-179
lines changed

5 files changed

+1258
-179
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ dist
33
*.js
44
*.map
55
*.d.ts
6+
dist.tgz
67

78
# Library directories
89
node_modules
@@ -13,8 +14,8 @@ npm-debug.log
1314
.DS_Store
1415
**/.DS_Store
1516

16-
# Ignore VSCode config
17+
# VSCode config
1718
.vscode
1819

19-
# Ignore error files
20+
# Yarn
2021
yarn-error.log

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,6 @@ tsconfig.json
2020

2121
# AoT
2222
*.ngsummary.json
23+
24+
# Yarn
25+
yarn-error.log

ng-package.json

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
33
"name": "angular2-token",
44
"version": "0.2.0-beta.14",
5+
"repository": "https://github.com/neroniaky/angular2-token.git",
6+
"author": "Jan-Philipp Riethmacher <[email protected]>",
7+
"license": "MIT",
8+
"peerDependencies": {
9+
"@angular/common": ">=5",
10+
"@angular/core": ">=5",
11+
"@angular/http": ">=5",
12+
"@angular/router": ">=5"
13+
},
514
"ngPackage": {
615
"lib": {
716
"entryFile": "src/public_api.ts"

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@
66
"typings": "./angular2-token.d.ts",
77
"scripts": {
88
"test": "karma start",
9-
"build": "ng-packagr -p ng-package.json"
9+
"build": "rimraf dist && ng-packagr -p ng-package.json"
1010
},
1111
"keywords": [
1212
"angular",
1313
"devise token auth",
1414
"token authentication"
1515
],
1616
"peerDependencies": {
17-
"@angular/common": "^5",
18-
"@angular/core": "^5",
19-
"@angular/forms": "^5",
20-
"@angular/http": "^5",
21-
"@angular/router": "^5"
17+
"@angular/common": ">=5",
18+
"@angular/core": ">=5",
19+
"@angular/http": ">=5",
20+
"@angular/router": ">=5"
2221
},
2322
"devDependencies": {
2423
"@angular/cli": "6.0.1",
@@ -38,7 +37,7 @@
3837
"@types/jasmine": "2.8.7",
3938
"@types/node": "10.0.8",
4039
"@types/selenium-webdriver": "3.0.8",
41-
"@types/webpack": "4.1.5",
40+
"@types/webpack": "4.1.6",
4241
"@types/tapable": "1.0.2",
4342

4443
"awesome-typescript-loader": "5.0.0",
@@ -62,8 +61,9 @@
6261
"source-map-loader": "0.2.3",
6362
"ts-helpers": "1.1.2",
6463
"ts-node": "6.0.3",
64+
"ng-packagr": "2.4.4",
6565
"typescript": "2.7.2",
66-
"webpack": "4.8.1",
66+
"webpack": "4.8.2",
6767
"zone.js": "0.8.26"
6868
},
6969
"author": "Jan-Philipp Riethmacher <[email protected]>",

0 commit comments

Comments
 (0)