Skip to content

Commit

Permalink
chore: revert 'compilationMode' changes
Browse files Browse the repository at this point in the history
  • Loading branch information
valkanov committed Oct 27, 2023
1 parent e2ebf50 commit 341fecc
Show file tree
Hide file tree
Showing 12 changed files with 45 additions and 31 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [14.0.0](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)
# [{{version}}](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)

### BREAKING CHANGES

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"projects/*"
],
"version": "14.0.0",
"version": "13.0.0",
"command": {
"publish": {
"conventionalCommits": true
Expand Down
46 changes: 30 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng-idle",
"description": "A module for responding to idle users in Angular applications.",
"version": "14.0.0",
"version": "13.0.0",
"repository": {
"type": "git",
"url": "https://github.com/moribvndvs/ng2-idle.git"
Expand Down
2 changes: 1 addition & 1 deletion projects/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [14.0.0](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)
# [{{version}}](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)

### BREAKING CHANGES

Expand Down
6 changes: 3 additions & 3 deletions projects/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng-idle/core",
"version": "14.0.0",
"version": "13.0.0",
"description": "A module for detecting and responding to the user becoming idle in Angular applications.",
"repository": {
"type": "git",
Expand All @@ -23,8 +23,8 @@
},
"homepage": "https://github.com/moribvndvs/ng2-idle.git#readme",
"peerDependencies": {
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0"
"@angular/common": ">=9.0.0",
"@angular/core": ">=9.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion projects/core/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
]
},
"angularCompilerOptions": {
"compilationMode": "full",
"compilationMode": "partial",
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"strictTemplates": true,
Expand Down
2 changes: 1 addition & 1 deletion projects/core/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "full"
"compilationMode": "partial"
}
}
2 changes: 1 addition & 1 deletion projects/keepalive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [14.0.0](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)
# [{{version}}](https://github.com/moribvndvs/ng2-idle/pull/193) (2023-10-14)

### BREAKING CHANGES

Expand Down
6 changes: 3 additions & 3 deletions projects/keepalive/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ng-idle/keepalive",
"version": "14.0.0",
"version": "13.0.0",
"description": "Module that works with @ng-idle/core to keep a user session alive while user is active.",
"repository": {
"type": "git",
Expand All @@ -24,8 +24,8 @@
},
"homepage": "https://github.com/moribvndvs/ng2-idle.git#readme",
"peerDependencies": {
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0",
"@angular/common": ">=9.0.0",
"@angular/core": ">=9.0.0",
"@ng-idle/core": ">=0.0.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion projects/keepalive/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
]
},
"angularCompilerOptions": {
"compilationMode": "full",
"compilationMode": "partial",
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"strictTemplates": true,
Expand Down
2 changes: 1 addition & 1 deletion projects/keepalive/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "full"
"compilationMode": "partial"
}
}

0 comments on commit 341fecc

Please sign in to comment.