-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump npm-registry-fetch from 4.0.4 to 4.0.5 Bumps [npm-registry-fetch](https://github.com/npm/registry-fetch) from 4.0.4 to 4.0.5. - [Release notes](https://github.com/npm/registry-fetch/releases) - [Changelog](https://github.com/npm/npm-registry-fetch/blob/latest/CHANGELOG.md) - [Commits](https://github.com/npm/registry-fetch/commits) Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
3d635ac
commit 022d0f5
Showing
10 changed files
with
2,622 additions
and
3,191 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
{ | ||
"name": "@uiowa/date-range-picker", | ||
"version": "3.1.0", | ||
"author": "Changhui Xu <[email protected]>", | ||
"contributors": [ | ||
"Jacob Feuerbach <[email protected]>" | ||
], | ||
"description": "An Angular library for date range picker.", | ||
"keywords": [ | ||
"Angular", | ||
"uiowa", | ||
"date range picker", | ||
"bootstrap" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/changhuixu/date-range-picker.git" | ||
}, | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"@angular/common": ">=9.0.0", | ||
"@angular/core": ">=9.0.0", | ||
"@angular/localize": ">=9.0.0", | ||
"@ng-bootstrap/ng-bootstrap": ">=6.0.0" | ||
} | ||
} | ||
{ | ||
"name": "@uiowa/date-range-picker", | ||
"version": "4.0.0", | ||
"author": "Changhui Xu <[email protected]>", | ||
"contributors": [ | ||
"Jacob Feuerbach <[email protected]>" | ||
], | ||
"description": "An Angular library for date range picker.", | ||
"keywords": [ | ||
"Angular", | ||
"uiowa", | ||
"date range picker", | ||
"bootstrap" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/changhuixu/date-range-picker.git" | ||
}, | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"@angular/common": ">=10.0.0", | ||
"@angular/core": ">=10.0.0", | ||
"@angular/localize": ">=10.0.0", | ||
"@ng-bootstrap/ng-bootstrap": ">=7.0.0" | ||
}, | ||
"dependencies": { | ||
"tslib": "^2.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"compileOnSave": false, | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"outDir": "./dist/out-tsc", | ||
"sourceMap": true, | ||
"declaration": false, | ||
"downlevelIteration": true, | ||
"experimentalDecorators": true, | ||
"module": "es2020", | ||
"moduleResolution": "node", | ||
"importHelpers": true, | ||
"target": "es2015", | ||
"lib": [ | ||
"es2018", | ||
"dom" | ||
], | ||
"paths": { | ||
"@uiowa/date-range-picker": [ | ||
"dist/uiowa/date-range-picker/uiowa-date-range-picker", | ||
"dist/uiowa/date-range-picker" | ||
] | ||
} | ||
}, | ||
"angularCompilerOptions": { | ||
"fullTemplateTypeCheck": true, | ||
"strictInjectionParameters": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,17 @@ | ||
/* | ||
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. | ||
It is not intended to be used to perform a compilation. | ||
To learn more about this file see: https://angular.io/config/solution-tsconfig. | ||
*/ | ||
{ | ||
"compileOnSave": false, | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"outDir": "./dist/out-tsc", | ||
"sourceMap": true, | ||
"declaration": false, | ||
"downlevelIteration": true, | ||
"experimentalDecorators": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"importHelpers": true, | ||
"target": "es2015", | ||
"lib": [ | ||
"es2018", | ||
"dom" | ||
], | ||
"paths": { | ||
"@uiowa/date-range-picker": [ | ||
"dist/uiowa/date-range-picker/uiowa-date-range-picker", | ||
"dist/uiowa/date-range-picker" | ||
] | ||
"files": [], | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.app.json" | ||
}, | ||
{ | ||
"path": "./projects/uiowa/date-range-picker/tsconfig.lib.json" | ||
} | ||
}, | ||
"angularCompilerOptions": { | ||
"fullTemplateTypeCheck": true, | ||
"strictInjectionParameters": true | ||
} | ||
] | ||
} |