Stop publishing package debug artifacts

This commit is contained in:
Mohamed Boudra
2026-05-28 14:29:36 +07:00
parent c4f9874e1f
commit 0737c5c973
8 changed files with 22 additions and 4 deletions

View File

@@ -7,7 +7,8 @@
},
"files": [
"bin",
"dist"
"dist",
"!dist/**/*.map"
],
"type": "module",
"publishConfig": {

View File

@@ -4,6 +4,7 @@
"description": "Paseo client SDK package",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"type": "module",

View File

@@ -8,6 +8,10 @@ directories:
output: release
files:
- dist/**/*
- "!**/*.map"
- "!node_modules/@getpaseo/*/src/**"
- "!node_modules/@getpaseo/**/*.test.*"
- "!node_modules/@getpaseo/**/*.spec.*"
asarUnpack:
- dist/daemon/node-entrypoint-runner.js
- node_modules/@getpaseo/server/dist/server/terminal/shell-integration/**/*

View File

@@ -17,6 +17,15 @@ describe("desktop packaging", () => {
);
});
it("excludes package debug/source files from the packaged app", () => {
const config = readFileSync(join(packageRoot, "electron-builder.yml"), "utf8");
expect(config).toContain("!**/*.map");
expect(config).toContain("!node_modules/@getpaseo/*/src/**");
expect(config).toContain("!node_modules/@getpaseo/**/*.test.*");
expect(config).toContain("!node_modules/@getpaseo/**/*.spec.*");
});
// electron-builder packs production dependencies declared in package.json into
// app.asar. Runtime code in runtime-paths.ts and bin/paseo dynamically resolves
// these workspace packages by string, so static analysis (TypeScript, Knip) cannot

View File

@@ -2,7 +2,8 @@
"name": "@getpaseo/highlight",
"version": "0.1.83",
"files": [
"dist"
"dist",
"!dist/**/*.map"
],
"type": "module",
"main": "./dist/index.js",

View File

@@ -4,6 +4,7 @@
"description": "Paseo shared protocol schemas and wire types",
"files": [
"dist",
"!dist/**/*.map",
"README.md"
],
"type": "module",

View File

@@ -3,7 +3,8 @@
"version": "0.1.83",
"description": "Paseo relay for bridging daemon and client connections",
"files": [
"dist"
"dist",
"!dist/**/*.map"
],
"type": "module",
"types": "./dist/index.d.ts",

View File

@@ -6,7 +6,7 @@
"dist/server",
"dist/src",
"dist/scripts",
"src/server/speech/providers/local/sherpa/assets",
"!dist/**/*.map",
"README.md",
".env.example"
],