-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use ng-packagr to create build package
Summary: - use ng-packagr to create build - added - src/ng-package.json -> contains the ng-packagr settings - src/public_api.ts -> same as the old src/index.js, but it is ng-packagr convention - moved the demo app out from the src folder to the root - deleted the old build settings - npm scripts - scripts/release.js - rollup.config.js - tsconfig.release.js
- Loading branch information
Showing
42 changed files
with
1,682 additions
and
1,783 deletions.
There are no files selected for viewing
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/demo/src/app/dummy.component.ts → demo/src/app/dummy.component.ts
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
export * from './dropdown/types'; | ||
export * from './dropdown/search-filter.pipe'; | ||
export * from './dropdown/dropdown.module'; | ||
export * from './dropdown/dropdown.component'; | ||
export * from './public_api' |
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,8 @@ | ||
{ | ||
"$schema": "./node_modules/ng-packagr/ng-package.schema.json", | ||
"lib": { | ||
"entryFile": "public_api.ts", | ||
"languageLevel": ["dom", "es2017"] | ||
}, | ||
"dest": "../dist" | ||
} |
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 @@ | ||
{ | ||
"name": "angular-2-dropdown-multiselect", | ||
"version": "1.7.1", | ||
"description": "Customizable dropdown multiselect in Angular 2 with bootstrap css.", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/softsimon/angular-2-dropdown-multiselect.git" | ||
}, | ||
"keywords": [ | ||
"angular 2", | ||
"dropdown", | ||
"multi select" | ||
], | ||
"author": "Simon Lindh", | ||
"contributors": [ | ||
"Alex Malkevich <[email protected]>" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/softsimon/angular-2-dropdown-multiselect/issues" | ||
}, | ||
"homepage": "http://softsimon.github.io/angular-2-dropdown-multiselect", | ||
"peerDependencies": { | ||
"@angular/common": "^5.2.9", | ||
"@angular/core": "^5.2.9", | ||
"@angular/forms": "^5.2.9", | ||
"tslib": "^1.6.1" | ||
} | ||
} |
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,4 @@ | ||
export * from './dropdown/types'; | ||
export * from './dropdown/search-filter.pipe'; | ||
export * from './dropdown/dropdown.module'; | ||
export * from './dropdown/dropdown.component'; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.