Skip to content

Commit 25f9913

Browse files
committed
fix: boot-jsnosqlc publishConfig + remove private flag; update lockfile
boot-jsnosqlc/package.json was missing publishConfig and had private:true, which would cause npm publish --workspaces to skip it. Pinned dependency versions to 3.0.4 / ^1.0.0 to match the rest of the monorepo. Regenerated package-lock.json after package.json change.
1 parent 7ae540d commit 25f9913

File tree

2 files changed

+38
-14
lines changed

2 files changed

+38
-14
lines changed

package-lock.json

Lines changed: 12 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/boot-jsnosqlc/package.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,41 @@
1313
],
1414
"type": "module",
1515
"main": "index.js",
16+
"exports": {
17+
".": "./index.js"
18+
},
1619
"scripts": {
1720
"test": "mocha --recursive test/**/*.spec.js"
1821
},
1922
"dependencies": {
20-
"@alt-javascript/boot": "*",
21-
"@alt-javascript/cdi": "*",
22-
"@alt-javascript/jsnosqlc-core": "*"
23+
"@alt-javascript/boot": "3.0.4",
24+
"@alt-javascript/cdi": "3.0.4",
25+
"@alt-javascript/jsnosqlc-core": "^1.0.0"
2326
},
2427
"devDependencies": {
25-
"@alt-javascript/jsnosqlc-memory": "*",
28+
"@alt-javascript/jsnosqlc-memory": "^1.0.0",
2629
"chai": "^4.3.7",
2730
"mocha": "^11.7.5"
2831
},
32+
"publishConfig": {
33+
"registry": "https://registry.npmjs.org/",
34+
"access": "public"
35+
},
2936
"author": "Craig Parravicini",
37+
"contributors": [
38+
"Claude (Anthropic)"
39+
],
3040
"license": "MIT",
31-
"private": true
41+
"repository": {
42+
"type": "git",
43+
"url": "git+https://github.com/alt-javascript/boot.git",
44+
"directory": "packages/boot-jsnosqlc"
45+
},
46+
"homepage": "https://github.com/alt-javascript/boot/tree/main/packages/boot-jsnosqlc#readme",
47+
"bugs": {
48+
"url": "https://github.com/alt-javascript/boot/issues"
49+
},
50+
"engines": {
51+
"node": ">=18"
52+
}
3253
}

0 commit comments

Comments
 (0)