We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72dcd72 commit 59c0520Copy full SHA for 59c0520
.changepacks/config.json
@@ -0,0 +1,6 @@
1
+{
2
+ "ignore": ["**", "!packages/**"],
3
+ "baseBranch": "main",
4
+ "latestPackage": null,
5
+ "publish": {}
6
+}
biome.json
@@ -6,7 +6,7 @@
"useIgnoreFile": true
7
},
8
"files": {
9
- "includes": ["**", "!**/dist"]
+ "includes": ["**", "!**/dist", "!.changepacks/**"]
10
11
"javascript": {
12
"formatter": {
packages/core/src/__tests__/index.test.ts
@@ -0,0 +1,8 @@
+import { expect, test } from 'bun:test'
+import * as indexModule from '../index'
+
+test('index.ts exports all types', () => {
+ expect(indexModule).toBeDefined()
+ expect(typeof indexModule).toBe('object')
+ expect(Object.keys(indexModule)).toEqual([])
+})
0 commit comments