Skip to content

Commit

Permalink
fix: add "url" to peerDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kukhariev committed Jun 23, 2018
1 parent 9f56461 commit 909a8a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
7 changes: 2 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,18 @@
"ci": "npm run lint && npm run test:once && npm run e2e"
},
"dependencies": {
"@angular/animations": "6.0.2",
"@angular/common": "6.0.2",
"@angular/core": "6.0.2",
"@angular/compiler": "6.0.2",
"@angular/animations": "6.0.2",
"@angular/core": "6.0.2",
"@angular/forms": "6.0.2",
"@angular/http": "6.0.2",
"@angular/platform-browser": "6.0.2",
"@angular/platform-browser-dynamic": "6.0.2",
"@angular/router": "6.0.2",
"core-js": "^2.5.6",
"rxjs": "^6.1.0",
"url": "^0.11.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as fs from 'fs';
import * as rimraf from 'rimraf';
const copyFile = util.promisify(fs.copyFile);
const unlink = util.promisify(fs.unlink);
console.log(process.cwd());

(async () => {
rimraf.sync('dist');
Expand All @@ -17,7 +16,8 @@ console.log(process.cwd());
packageJson.peerDependencies = {
'@angular/core': '^5.2.0 || ^6.0.0',
'@angular/common': '^5.2.0 || ^6.0.0',
rxjs: '^6.0.0'
rxjs: '^6.0.0',
url: '^0.11.0'
};
packageJson.ngPackage = {
$schema: './node_modules/ng-packagr/ng-package.schema.json',
Expand Down

0 comments on commit 909a8a9

Please sign in to comment.