Skip to content

Commit 0cf6366

Browse files
authored
feat: export /logging (#242)
* feat: export /logging * chore: add changeset
1 parent a17a3c3 commit 0cf6366

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.changeset/odd-fans-cough.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"robot3": minor
3+
---
4+
5+
'/logging' is now exported, so you can import it in your dev environment to log state changes.
6+
7+
```ts
8+
import 'robot3/logging';
9+
10+
import {...} from 'robot3';
11+
```

packages/core/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
"require": "./dist/debug.js",
1616
"import": "./debug.js",
1717
"default": "./debug.js"
18+
},
19+
"./logging": {
20+
"require": "./dist/logging.js",
21+
"import": "./logging.js",
22+
"default": "./logging.js"
1823
}
1924
},
2025
"files": [

0 commit comments

Comments
 (0)