Fix package.json entry point to use index.ts

- Changed main field from "logger.ts" to "index.ts"
- Bumped version to 1.0.1-beta.2
- Updated IOR identifier to match new version

This fixes the LogLevel export issue where importing from the
resolved module couldn't access LogLevel because the entry point
was bypassing the proper index.ts re-exports.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Chris Daßler
2025-10-12 23:26:09 +02:00
parent 7f874b4756
commit 8e3a6f0ccd

View File

@@ -1,10 +1,10 @@
{
"name": "@metatrom/logger",
"version": "1.0.1-beta.1",
"main": "logger.ts",
"version": "1.0.1-beta.2",
"main": "index.ts",
"type": "module",
"metatrom": {
"ior": "com.metatrom.universal-components.logger@1.0.1-beta.1",
"ior": "com.metatrom.universal-components.logger@1.0.1-beta.2",
"capabilities": {
"p2p": false,
"contracts": false,