Skip to content

Commit 06e3faf

Browse files
committed
fixup: remove pure export, concentrate on test fixes
1 parent 3fad5e9 commit 06e3faf

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
"types": "./types/index.d.ts",
99
"default": "./src/index.js"
1010
},
11-
"./pure": {
12-
"types": "./types/index.d.ts",
13-
"default": "./src/pure.js"
14-
},
1511
"./svelte5": {
1612
"types": "./types/index.d.ts",
1713
"default": "./src/svelte5-index.js"

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import { act, cleanup } from './pure.js'
44
// If we're running in a test runner that supports afterEach
55
// then we'll automatically run cleanup afterEach test
66
// this ensures that tests run in isolation from each other
7-
// if you don't like this then either import the `pure` module
8-
// or set the STL_SKIP_AUTO_CLEANUP env variable to 'true'.
7+
// if you don't like this then set the STL_SKIP_AUTO_CLEANUP env variable.
98
if (typeof afterEach === 'function' && !process.env.STL_SKIP_AUTO_CLEANUP) {
109
afterEach(async () => {
1110
await act()

0 commit comments

Comments
 (0)