diff --git a/.changeset/config.json b/.changeset/config.json index 3835aae..f2c804f 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -9,12 +9,11 @@ "updateInternalDependencies": "patch", "ignore": [ "@tpmjs/config", - "@tpmjs/eslint-config", - "@tpmjs/tailwind-config", - "@tpmjs/tsconfig", - "@tpmjs/test", - "@tpmjs/mocks", "@tpmjs/storybook", "@tpmjs/web" - ] + ], + "privatePackages": { + "version": false, + "tag": false + } } diff --git a/packages/env/CHANGELOG.md b/packages/env/CHANGELOG.md new file mode 100644 index 0000000..07a2a2b --- /dev/null +++ b/packages/env/CHANGELOG.md @@ -0,0 +1,14 @@ +# @tpmjs/env + +## 0.1.1 + +### Patch Changes + +- Initial release of TPMJS packages + + - @tpmjs/ui: React component library with .ts-only components (Button, Card) + - @tpmjs/utils: Utility functions (cn for Tailwind class merging, format functions) + - @tpmjs/types: TypeScript types and Zod schemas for tools and registry + - @tpmjs/env: Environment variable validation with Zod + + All packages follow strict TypeScript practices and use ESM format. diff --git a/packages/env/package.json b/packages/env/package.json index 7df3c13..e605993 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/env", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "exports": { ".": { diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md new file mode 100644 index 0000000..eefb8a3 --- /dev/null +++ b/packages/types/CHANGELOG.md @@ -0,0 +1,14 @@ +# @tpmjs/types + +## 0.1.1 + +### Patch Changes + +- Initial release of TPMJS packages + + - @tpmjs/ui: React component library with .ts-only components (Button, Card) + - @tpmjs/utils: Utility functions (cn for Tailwind class merging, format functions) + - @tpmjs/types: TypeScript types and Zod schemas for tools and registry + - @tpmjs/env: Environment variable validation with Zod + + All packages follow strict TypeScript practices and use ESM format. diff --git a/packages/types/package.json b/packages/types/package.json index 9833e2f..9e9868a 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/types", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "exports": { "./tool": { diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md new file mode 100644 index 0000000..fa9874e --- /dev/null +++ b/packages/ui/CHANGELOG.md @@ -0,0 +1,17 @@ +# @tpmjs/ui + +## 0.1.1 + +### Patch Changes + +- Initial release of TPMJS packages + + - @tpmjs/ui: React component library with .ts-only components (Button, Card) + - @tpmjs/utils: Utility functions (cn for Tailwind class merging, format functions) + - @tpmjs/types: TypeScript types and Zod schemas for tools and registry + - @tpmjs/env: Environment variable validation with Zod + + All packages follow strict TypeScript practices and use ESM format. + +- Updated dependencies + - @tpmjs/utils@0.1.1 diff --git a/packages/ui/package.json b/packages/ui/package.json index 47d7734..1fd045b 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/ui", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "exports": { "./Button/Button": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md new file mode 100644 index 0000000..3942037 --- /dev/null +++ b/packages/utils/CHANGELOG.md @@ -0,0 +1,14 @@ +# @tpmjs/utils + +## 0.1.1 + +### Patch Changes + +- Initial release of TPMJS packages + + - @tpmjs/ui: React component library with .ts-only components (Button, Card) + - @tpmjs/utils: Utility functions (cn for Tailwind class merging, format functions) + - @tpmjs/types: TypeScript types and Zod schemas for tools and registry + - @tpmjs/env: Environment variable validation with Zod + + All packages follow strict TypeScript practices and use ESM format. diff --git a/packages/utils/package.json b/packages/utils/package.json index c1bc587..b26da14 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@tpmjs/utils", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "exports": { "./cn": {