@walkeros/config 2.0.0 → 2.1.0

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 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/'],
@@ -1,11 +1,7 @@
1
1
  const mockDataLayer = jest.fn();
2
2
 
3
3
  global.beforeEach(() => {
4
- jest.useFakeTimers();
5
-
6
- // Mocks
7
4
  jest.clearAllMocks();
8
- jest.resetModules();
9
5
  });
10
6
 
11
7
  global.afterEach(() => {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/config",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "type": "module",
5
5
  "description": "Shared development configuration for walkerOS packages (TypeScript, ESLint, Jest, tsup)",
6
6
  "license": "MIT",
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