Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
plantain-00 committed Aug 17, 2019
1 parent 2720860 commit 4fdeb8f
Show file tree
Hide file tree
Showing 7 changed files with 212 additions and 175 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
packages/@(core|vue|react|angular)/@(src|demo)/**/*.d.ts
*.d.ts
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"prettier/@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.base.json"
"project": "./tsconfig.eslint.json"
},
"plugins": [
"plantain"
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
},
"homepage": "https://github.com/plantain-00/select2-component#readme",
"devDependencies": {
"@angular/compiler": "8.2.1",
"@angular/compiler-cli": "8.2.1",
"@angular/core": "8.2.1",
"@angular/compiler": "8.2.2",
"@angular/compiler-cli": "8.2.2",
"@angular/core": "8.2.2",
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/jasmine": "3.4.0",
"@types/puppeteer": "1.19.0",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"@types/puppeteer": "1.19.1",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"autoprefixer": "9.6.1",
"clean-css-cli": "4.3.0",
"clean-scripts": "1.12.1",
Expand All @@ -47,7 +47,7 @@
"http-server": "0.11.1",
"jasmine": "3.4.0",
"karma": "4.2.0",
"karma-chrome-launcher": "3.0.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.2.0",
"karma-jasmine": "2.0.1",
"karma-webpack": "4.0.2",
Expand All @@ -58,7 +58,7 @@
"postcss-cli": "6.1.3",
"puppeteer": "1.19.0",
"rev-static": "3.4.3",
"rimraf": "2.6.3",
"rimraf": "3.0.0",
"rollup": "1.19.4",
"rollup-plugin-commonjs": "10.0.2",
"rollup-plugin-node-resolve": "5.2.0",
Expand All @@ -68,7 +68,7 @@
"type-coverage": "2.2.0",
"typescript": "3.5.3",
"watch-then-execute": "1.1.1",
"webpack": "4.39.1",
"webpack": "4.39.2",
"webpack-cli": "3.3.6"
},
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"devDependencies": {
"@angular/platform-browser": "8.1.2",
"@angular/platform-browser-dynamic": "8.1.2",
"core-js": "3.2.0",
"core-js": "3.2.1",
"rxjs": "6.5.2",
"zone.js": "0.9.1"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/src/index.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class Select2 implements ControlValueAccessor {
private _clickDetection = false
private _clickDetectionFc: (e: MouseEvent) => void
private _id!: string
private _uid: string = `select2-${nextUniqueId++}`
private _uid = `select2-${nextUniqueId++}`
private _value!: common.Select2UpdateValue
private _previousNativeValue: common.Select2UpdateValue = this._value

Expand Down
12 changes: 12 additions & 0 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.base.json",
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.config.js",
],
"compilerOptions": {
"allowJs": true,
"checkJs": true
}
}

0 comments on commit 4fdeb8f

Please sign in to comment.