peri-fuse 0.1.0 → 0.1.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/dist/lib/paths.js +2 -1
- package/package.json +1 -4
package/dist/lib/paths.js
CHANGED
|
@@ -93,7 +93,8 @@ function logFile() {
|
|
|
93
93
|
* - Monorepo dev: falls back to <root>/packages/server/dist/index.js.
|
|
94
94
|
*/
|
|
95
95
|
function serverEntry() {
|
|
96
|
-
|
|
96
|
+
// __dirname = dist/lib/ (compiled), server.cjs lives in dist/
|
|
97
|
+
const bundled = path.join(__dirname, "..", "server.cjs");
|
|
97
98
|
if (fs.existsSync(bundled))
|
|
98
99
|
return bundled;
|
|
99
100
|
return path.join(findProjectRoot(), "packages", "server", "dist", "index.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "peri-fuse",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Peri-Fuse command-line tool — manage the background observability server",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -14,9 +14,6 @@
|
|
|
14
14
|
"dist",
|
|
15
15
|
"drizzle"
|
|
16
16
|
],
|
|
17
|
-
"publishConfig": {
|
|
18
|
-
"access": "public"
|
|
19
|
-
},
|
|
20
17
|
"scripts": {
|
|
21
18
|
"build": "node build.mjs",
|
|
22
19
|
"typecheck": "tsc --noEmit --skipLibCheck",
|