@walkeros/config 2.0.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jest/index.mjs +0 -2
- package/jest/node.setup.mjs +0 -4
- package/package.json +1 -1
- package/tsup/index.mjs +1 -0
package/jest/index.mjs
CHANGED
|
@@ -118,10 +118,8 @@ const config = {
|
|
|
118
118
|
// Performance settings - reduced for devcontainer memory constraints
|
|
119
119
|
maxWorkers: 2,
|
|
120
120
|
testTimeout: 30000,
|
|
121
|
-
// forceExit disabled to allow proper cleanup and detect handle leaks
|
|
122
121
|
clearMocks: true,
|
|
123
122
|
restoreMocks: true,
|
|
124
|
-
detectOpenHandles: true,
|
|
125
123
|
|
|
126
124
|
// Exclude from module resolution (prevents Haste collisions with cached packages)
|
|
127
125
|
modulePathIgnorePatterns: ['<rootDir>/.tmp', '/dist/'],
|
package/jest/node.setup.mjs
CHANGED
package/package.json
CHANGED
package/tsup/index.mjs
CHANGED
|
@@ -158,6 +158,7 @@ const buildDev = (customConfig = {}) => {
|
|
|
158
158
|
const meta = { package: pkg.name, version: pkg.version };
|
|
159
159
|
if (walkerOS.type) meta.type = walkerOS.type;
|
|
160
160
|
if (walkerOS.platform) meta.platform = walkerOS.platform;
|
|
161
|
+
if (walkerOS.renderer) meta.renderer = walkerOS.renderer;
|
|
161
162
|
|
|
162
163
|
const output = { $meta: meta, schemas, examples };
|
|
163
164
|
|