@justram/pie 0.2.2 → 0.2.3
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/CHANGELOG.md +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,20 @@
|
|
|
12
12
|
|
|
13
13
|
### Removed
|
|
14
14
|
|
|
15
|
+
## 0.2.3
|
|
16
|
+
|
|
17
|
+
### Breaking Changes
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- Renamed the publish script to avoid recursive `npm publish` runs.
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
15
29
|
## 0.2.2
|
|
16
30
|
|
|
17
31
|
### Breaking Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justram/pie",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Structured extraction library and CLI built on @mariozechner/pi-ai.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"version:major": "npm version major --no-git-tag-version && node scripts/sync-versions.js",
|
|
56
56
|
"version:set": "npm version --no-git-tag-version",
|
|
57
57
|
"prepublishOnly": "npm run clean && npm run build && npm run check",
|
|
58
|
-
"publish": "npm run prepublishOnly && npm publish --access public",
|
|
58
|
+
"publish:public": "npm run prepublishOnly && npm publish --access public",
|
|
59
59
|
"publish:dry": "npm run prepublishOnly && npm publish --access public --dry-run",
|
|
60
60
|
"release:patch": "node scripts/release.mjs patch",
|
|
61
61
|
"release:minor": "node scripts/release.mjs minor",
|