@steipete/summarize 0.11.0 → 0.11.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/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.11.0 - Unreleased
3
+ ## 0.11.1 - 2026-02-14
4
+
5
+ ### Fixes
6
+
7
+ - npm packaging: publish CLI with `pnpm publish` so `@steipete/summarize-core` is version-pinned in published metadata (no `workspace:*` in registry package).
8
+
9
+ ## 0.11.0 - 2026-02-14
4
10
 
5
11
  ### Highlights
6
12
 
package/dist/cli.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
- if (!process.env.SUMMARIZE_GIT_SHA) process.env.SUMMARIZE_GIT_SHA = "353e8ee6"
2
+ if (!process.env.SUMMARIZE_GIT_SHA) process.env.SUMMARIZE_GIT_SHA = "ae52818b"
3
3
  await import('./esm/cli.js')
@@ -1,7 +1,7 @@
1
1
  import fs from "node:fs";
2
2
  import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
- export const FALLBACK_VERSION = "0.11.0";
4
+ export const FALLBACK_VERSION = "0.11.1";
5
5
  export function resolvePackageVersion(importMetaUrl) {
6
6
  const injected = typeof process !== "undefined" && typeof process.env.SUMMARIZE_VERSION === "string"
7
7
  ? process.env.SUMMARIZE_VERSION.trim()
@@ -1,4 +1,4 @@
1
- export declare const FALLBACK_VERSION = "0.11.0";
1
+ export declare const FALLBACK_VERSION = "0.11.1";
2
2
  export declare function resolvePackageVersion(importMetaUrl?: string): string;
3
3
  export declare function resolveGitSha(importMetaUrl?: string): string | null;
4
4
  export declare function formatVersionLine(importMetaUrl?: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steipete/summarize",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Link → clean text → summary.",
5
5
  "bin": {
6
6
  "summarize": "./dist/cli.js",
@@ -31,32 +31,8 @@
31
31
  "import": "./dist/esm/prompts/index.js"
32
32
  }
33
33
  },
34
- "scripts": {
35
- "build": "pnpm clean && pnpm -C packages/core build && pnpm build:lib && pnpm build:cli",
36
- "build:bun": "bun scripts/build-bun.js",
37
- "build:bun:test": "bun scripts/build-bun.js --test",
38
- "build:cli": "node scripts/build-cli.mjs",
39
- "build:lib": "tsc -p tsconfig.build.json",
40
- "check": "pnpm format:check && pnpm lint && pnpm test:coverage",
41
- "clean": "rimraf dist packages/core/dist",
42
- "docs:list": "tsx scripts/docs-list.ts",
43
- "format": "oxfmt --write",
44
- "format:check": "oxfmt --check",
45
- "lint": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json .",
46
- "lint:fix": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json --fix . && pnpm format",
47
- "prepare": "pnpm build",
48
- "release": "bash scripts/release.sh",
49
- "s": "tsx src/cli.ts",
50
- "summarize": "tsx src/cli.ts",
51
- "test": "vitest run",
52
- "test:coverage": "vitest run --coverage",
53
- "test:coverage:build": "pnpm build && pnpm test:coverage",
54
- "test:extension-e2e": "pnpm -C apps/chrome-extension test:e2e",
55
- "typecheck": "tsc -p tsconfig.build.json --noEmit"
56
- },
57
34
  "dependencies": {
58
35
  "@mariozechner/pi-ai": "^0.52.12",
59
- "@steipete/summarize-core": "workspace:*",
60
36
  "commander": "^14.0.3",
61
37
  "file-type": "^21.3.0",
62
38
  "gpt-tokenizer": "^3.4.0",
@@ -66,7 +42,8 @@
66
42
  "ora": "^9.3.0",
67
43
  "osc-progress": "^0.3.0",
68
44
  "tokentally": "^0.1.1",
69
- "tslog": "^4.10.2"
45
+ "tslog": "^4.10.2",
46
+ "@steipete/summarize-core": "0.11.1"
70
47
  },
71
48
  "devDependencies": {
72
49
  "@fal-ai/client": "^1.9.1",
@@ -86,10 +63,26 @@
86
63
  "engines": {
87
64
  "node": ">=22"
88
65
  },
89
- "packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
90
- "pnpm": {
91
- "overrides": {
92
- "vite": "7.3.0"
93
- }
66
+ "scripts": {
67
+ "build": "pnpm clean && pnpm -C packages/core build && pnpm build:lib && pnpm build:cli",
68
+ "build:bun": "bun scripts/build-bun.js",
69
+ "build:bun:test": "bun scripts/build-bun.js --test",
70
+ "build:cli": "node scripts/build-cli.mjs",
71
+ "build:lib": "tsc -p tsconfig.build.json",
72
+ "check": "pnpm format:check && pnpm lint && pnpm test:coverage",
73
+ "clean": "rimraf dist packages/core/dist",
74
+ "docs:list": "tsx scripts/docs-list.ts",
75
+ "format": "oxfmt --write",
76
+ "format:check": "oxfmt --check",
77
+ "lint": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json .",
78
+ "lint:fix": "oxlint --type-aware --tsconfig tsconfig.build.json --config .oxlintrc.json --fix . && pnpm format",
79
+ "release": "bash scripts/release.sh",
80
+ "s": "tsx src/cli.ts",
81
+ "summarize": "tsx src/cli.ts",
82
+ "test": "vitest run",
83
+ "test:coverage": "vitest run --coverage",
84
+ "test:coverage:build": "pnpm build && pnpm test:coverage",
85
+ "test:extension-e2e": "pnpm -C apps/chrome-extension test:e2e",
86
+ "typecheck": "tsc -p tsconfig.build.json --noEmit"
94
87
  }
95
- }
88
+ }