Skip to content

Commit 6ab82ca

Browse files
fix(scorer): add files field, bump all packages to 0.2.3
Scorer package.json was missing a `files` field. Without it, npm uses .gitignore to determine what to pack — and dist/ is gitignored. npm 10 (Node 22) refuses to publish when main/exports point to files not in the tarball, which caused every release to fail at the scorer step. Fix: explicitly declare `files: ["dist", "README.md"]`, matching the pattern already used by fluently-cli and fluently-mcp-server. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent debd7c2 commit 6ab82ca

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluently-cli",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"main": "src/index.ts",
55
"bin": {
66
"fluent": "dist/index.js"

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fluently-mcp-server",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "MCP server for the Fluently framework. Exposes knowledge retrieval and contribution tools so any AI agent (Claude, GPT, Gemini, Mistral, Copilot…) can find, reason over, and extend Fluently cycles.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/scorer/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
22
"name": "fluently-scorer",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Zero-dependency scoring engine for the Fluently 4D Framework. Validates YAML knowledge cycles with Zod and ranks them by keyword similarity — no API calls, no false-precision scores.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"exports": {
88
".": "./dist/index.js",
99
"./schema": "./dist/schema.js"
1010
},
11+
"files": [
12+
"dist",
13+
"README.md"
14+
],
1115
"publishConfig": {
1216
"access": "public"
1317
},

0 commit comments

Comments
 (0)