@walkeros/config 3.0.0 → 3.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsup/index.mjs +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walkeros/config",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
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
@@ -159,6 +159,7 @@ const buildDev = (customConfig = {}) => {
159
159
  if (walkerOS.type) meta.type = walkerOS.type;
160
160
  if (walkerOS.platform) meta.platform = walkerOS.platform;
161
161
  if (walkerOS.renderer) meta.renderer = walkerOS.renderer;
162
+ if (walkerOS.exports) meta.exports = walkerOS.exports;
162
163
 
163
164
  // Docs URL (manual, from walkerOS.docs in package.json)
164
165
  if (walkerOS.docs) meta.docs = walkerOS.docs;