forked from NileshPatel17/ng-multiselect-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nilesh Patel
committed
Sep 10, 2019
1 parent
6e38c52
commit 5667651
Showing
12 changed files
with
68 additions
and
75 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
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,23 +1,23 @@ | ||
// @TODO: try to add ts-check | ||
const jestConfig = { | ||
preset: 'jest-preset-angular', | ||
setupTestFrameworkScriptFile: '<rootDir>/src/setup-jest.ts', | ||
testMatch: [ | ||
'<rootDir>/src/**/__tests__/**/*.+(ts|js)?(x)', | ||
'<rootDir>/src/**/+(*.)+(spec|test).+(ts|js)?(x)', | ||
"preset": "jest-preset-angular", | ||
"setupFilesAfterEnv": [ | ||
"<rootDir>/src/setup-jest.ts" | ||
], | ||
// // moduleNameMapper: { | ||
// // 'app/(.*)': '<rootDir>/src/app/$1', | ||
// // 'assets/(.*)': '<rootDir>/src/assets/$1', | ||
// // 'environments/(.*)': '<rootDir>/src/environments/$1', | ||
// // }, | ||
// // transformIgnorePatterns: ['node_modules/(?!@ngrx)'], | ||
coveragePathIgnorePatterns: [ | ||
'<rootDir>/node_modules/', | ||
'<rootDir>/out-tsc/', | ||
'<rootDir>/src/.*(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$', | ||
'src/(setup-jest|jest-global-mocks).ts', | ||
"testPathIgnorePatterns": [ | ||
"<rootDir>/node_modules/", | ||
"<rootDir>/dist/", | ||
"<rootDir>/dist-lib/", | ||
"<rootDir>/src/test.ts" | ||
], | ||
}; | ||
"globals": { | ||
"ts-jest": { | ||
"tsConfig": "<rootDir>/src/tsconfig.spec.json", | ||
"stringifyContentPathRegex": "\\.html$", | ||
"astTransformers": [ | ||
"<rootDir>/node_modules/jest-preset-angular/InlineHtmlStripStylesTransformer" | ||
] | ||
} | ||
} | ||
} | ||
|
||
module.exports = jestConfig; |
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,6 +1,6 @@ | ||
{ | ||
"name": "ng-multiselect-dropdown", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"private": true, | ||
"description": "Angular Multi-Select Dropdown", | ||
"author": "Nilesh Patel", | ||
|
@@ -25,14 +25,14 @@ | |
"deployOnly": "angular-cli-ghpages --no-silent --repo=https://github.com/NileshPatel17/ng-multiselect-dropdown.git --name=\"Nilesh Patel\" [email protected]" | ||
}, | ||
"keywords": [ | ||
"angular2", | ||
"angular4", | ||
"angular8", | ||
"angular multiselect dropdown", | ||
"angular2 multiselect dropdown", | ||
"angular4 multiselect dropdown", | ||
"angular8 multiselect dropdown", | ||
"ng multiselect dropdown", | ||
"ng2 multiselect dropdown", | ||
"ng4 multiselect dropdown" | ||
"ng4 multiselect dropdown", | ||
"ng8 multiselect dropdown" | ||
], | ||
"repository": { | ||
"type": "git", | ||
|
@@ -43,7 +43,8 @@ | |
}, | ||
"homepage": "https://github.com/nileshpatel17/ng-multiselect-dropdown#readme", | ||
"peerDependencies": { | ||
"@angular/core": "^4.0.0 || ^8.2.2" | ||
"@angular/common": ">=2.0.0", | ||
"@angular/core": ">=2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "~0.802.2", | ||
|
@@ -52,7 +53,7 @@ | |
"@angular/common": "8.2.2", | ||
"@angular/compiler": "8.2.2", | ||
"@angular/compiler-cli": "8.2.2", | ||
"@angular/core": "5.2.9", | ||
"@angular/core": "8.2.2", | ||
"@angular/forms": "8.2.2", | ||
"@angular/http": "7.2.15", | ||
"@angular/language-service": "8.2.2", | ||
|
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
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,2 +1,3 @@ | ||
export { MultiSelectComponent } from './multiselect.component'; | ||
export { NgMultiSelectDropDownModule } from './ng-multiselect-dropdown.module'; | ||
export { IDropdownSettings } from './multiselect.model'; |
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
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