Skip to content

Commit ab76f7b

Browse files
committed
chore(deps): fix issues
1 parent 3ef6707 commit ab76f7b

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

Diff for: angular.json

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@
8787
"options": {
8888
"tsConfig": "projects/ng-event-plugins/tsconfig.lib.json",
8989
"project": "projects/ng-event-plugins/ng-package.json"
90+
},
91+
"configurations": {
92+
"production": {
93+
"tsConfig": "projects/cdk/tsconfig.lib.prod.json"
94+
}
9095
}
9196
},
9297
"test": {

Diff for: package-lock.json

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+3-8
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@
4343
"detection"
4444
],
4545
"license": "Apache-2.0",
46-
"authors": [
47-
"Alex Inkin <[email protected]>",
48-
"Roman Sedov <[email protected]>"
49-
],
46+
"authors": ["Alex Inkin <[email protected]>", "Roman Sedov <[email protected]>"],
5047
"repository": "https://github.com/TinkoffCreditSystems/ng-event-plugins",
5148
"bugs": "https://github.com/TinkoffCreditSystems/ng-event-plugins/issues",
5249
"homepage": "https://github.com/TinkoffCreditSystems/ng-event-plugins#README",
@@ -98,6 +95,7 @@
9895
"prettier": "^2.1.1",
9996
"standard-version": "^9.0.0",
10097
"ts-node": "~7.0.0",
98+
"tsickle": "^0.38.1",
10199
"tslint": "~5.15.0",
102100
"typescript": "~3.8.3"
103101
},
@@ -107,10 +105,7 @@
107105
}
108106
},
109107
"lint-staged": {
110-
"*.{js,ts,html,md,less,json}": [
111-
"prettier --write",
112-
"git add"
113-
],
108+
"*.{js,ts,html,md,less,json}": ["prettier --write", "git add"],
114109
"*.ts": "tslint"
115110
},
116111
"standard-version": {

Diff for: projects/ng-event-plugins/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "@tinkoff/ng-event-plugins",
33
"version": "2.0.0",
44
"peerDependencies": {
5-
"@angular/core": ">=4.0.0",
6-
"@angular/platform-browser": ">=4.0.0"
5+
"@angular/core": ">=9.0.0",
6+
"@angular/platform-browser": ">=9.0.0"
77
},
88
"description": "This is a library for optimizing performance sensitive events and declarative preventDefault and stopPropagation",
99
"keywords": [

Diff for: projects/ng-event-plugins/tsconfig.lib.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"strictMetadataEmit": true,
1515
"fullTemplateTypeCheck": true,
1616
"strictInjectionParameters": true,
17-
"enableResourceInlining": true
17+
"enableResourceInlining": true,
18+
"enableIvy": false
1819
},
1920
"exclude": ["src/test.ts", "**/*.spec.ts"]
2021
}

Diff for: tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"declaration": false,
88
"module": "esnext",
99
"moduleResolution": "node",
10-
"emitDecoratorMetadata": true,
1110
"experimentalDecorators": true,
1211
"importHelpers": true,
1312
"strict": true,

0 commit comments

Comments
 (0)