pipework 0.8.5 → 0.8.6

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/CHANGELOG.md +4 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.8.6
4
+
5
+ - **Expose `pipework/package.json` in the `exports` map** — bundlers (Vite, Webpack, esbuild), framework version probes, and monorepo tools often `require('pipework/package.json')` for introspection. With `exports` defined and `./package.json` absent, Node refused the resolution (`ERR_PACKAGE_PATH_NOT_EXPORTED`). Adding the explicit subpath restores the standard read.
6
+
3
7
  ## 0.8.5
4
8
 
5
9
  - **Fix: broken install of 0.8.4** — 0.8.4 declared `@pipework/flow-step-parser@0.1.0` as a dependency, but the `@pipework` npm scope does not exist and the workspace package was never published, so `pnpm add pipework@0.8.4` failed with a 404. The workspace package is now `pipework-flow-parser` (unscoped) and the release script publishes workspace packages before the root, so the dependency resolves.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipework",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "TypeScript framework for multi-tenant SaaS applications. PostgreSQL-only.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -54,7 +54,8 @@
54
54
  "./eslint/preset": {
55
55
  "import": "./dist/lint/preset.js",
56
56
  "types": "./dist/lint/preset.d.ts"
57
- }
57
+ },
58
+ "./package.json": "./package.json"
58
59
  },
59
60
  "main": "./dist/index.js",
60
61
  "types": "./dist/index.d.ts",