Skip to content

Commit b85a910

Browse files
committed
fix: define files in package.json
1 parent c07ff40 commit b85a910

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
node-version: "20.x"
1616
registry-url: "https://registry.npmjs.org"
17-
- run: pnpm install --frozen-lockfile
17+
- run: pnpm install
1818
- run: pnpm build
1919
- run: pnpm publish --no-git-checks
2020
env:

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "diffable-objects",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "A package for dynamic state tracking for Cloudflare's Durable Objects using SQLite",
55
"author": "Zeb Piasecki <[email protected]>",
66
"repository": "https://github.com/zebp/diffable-objects",
@@ -34,5 +34,9 @@
3434
"overrides": {
3535
"lodash": "npm:@technically/lodash"
3636
}
37-
}
37+
},
38+
"files": [
39+
"dist",
40+
"LICENSE"
41+
]
3842
}

0 commit comments

Comments
 (0)