Skip to content

Commit ee08b43

Browse files
chore: release [skip ci]
1 parent 447d803 commit ee08b43

File tree

22 files changed

+119
-56
lines changed

22 files changed

+119
-56
lines changed

.changeset/remove-library-export-lint-staged.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/remove-tsconfig-lib-cli.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/remove-tsconfig-lib-docs.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/remove-tsconfig-lib-packages.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @apitree.cz/cli
22

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- 90699c2: Remove `lib` configuration option from sync-project-references
8+
9+
The `lib` property has been removed from the `SyncProjectReferencesTsConfigs` interface and default configuration. This option was never actually used by the CLI and has been deprecated in favor of a simpler two-config pattern (tsconfig.json and tsconfig.build.json).
10+
11+
If you have custom configuration that references `tsConfigs.lib`, you can safely remove it as it had no effect.
12+
13+
### Patch Changes
14+
15+
- Updated dependencies [90699c2]
16+
- @apitree.cz/[email protected]
17+
318
## 0.4.13
419

520
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apitree.cz/cli",
3-
"version": "0.4.13",
3+
"version": "0.5.0",
44
"description": "Command line interface for ApiTree projects.",
55
"keywords": [
66
"apitree",

packages/eslint-config/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @apitree.cz/eslint-config
22

3+
## 0.7.6
4+
5+
### Patch Changes
6+
7+
- 90699c2: Simplify TypeScript configuration structure
8+
9+
Removed `tsconfig.lib.json` files and consolidated configuration into `tsconfig.json`. The new pattern uses only two config files per package:
10+
- `tsconfig.json` - Main configuration for type checking (extends from @apitree.cz/ts-config/library)
11+
- `tsconfig.build.json` - Build configuration (inherits from tsconfig.json)
12+
13+
Updated package.json scripts to reference `tsconfig.json` instead of `tsconfig.lib.json` for type checking and documentation generation. This is an internal change and does not affect package consumers.
14+
315
## 0.7.5
416

517
### Patch Changes

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apitree.cz/eslint-config",
3-
"version": "0.7.5",
3+
"version": "0.7.6",
44
"description": "ESLint configuration for ApiTree projects.",
55
"keywords": [
66
"apitree",

packages/lint-staged-config/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @apitree.cz/lint-staged-config
22

3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- 90699c2: Remove `library` export
8+
9+
The `library` export has been removed as it is now identical to the `workspace` export. Use `workspace` instead for all workspace configurations.
10+
11+
**Breaking change:**
12+
13+
```diff
14+
- export { library as default } from '@apitree.cz/lint-staged-config';
15+
+ export { workspace as default } from '@apitree.cz/lint-staged-config';
16+
```
17+
318
## 0.2.7
419

520
### Patch Changes

packages/lint-staged-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apitree.cz/lint-staged-config",
3-
"version": "0.2.7",
3+
"version": "1.0.0",
44
"description": "Lint-staged configuration for ApiTree projects.",
55
"keywords": [
66
"apitree",

0 commit comments

Comments
 (0)