@papert-code/papert-code 0.3.93 → 0.3.94
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/chunks/{chunk-TQNFJUNM.js → chunk-6ZOXSA5F.js} +5 -5
- package/dist/chunks/{chunk-PGKEXZYI.js → chunk-7T4OCWHU.js} +65 -16
- package/dist/chunks/{chunk-ZHTGXQAR.js → chunk-OIA427PZ.js} +6 -4
- package/dist/chunks/{gemini-GXD4BGSD.js → gemini-WYRXV2QC.js} +2719 -1984
- package/dist/chunks/{openaiContentGenerator-RS2GU6IS.js → openaiContentGenerator-EAVO6L3Y.js} +2 -2
- package/dist/chunks/{papertContentGenerator-RYRJQVBF.js → papertContentGenerator-G4SBF3DR.js} +3 -3
- package/dist/cli.js +1 -1
- package/package.json +6 -2
package/dist/chunks/{openaiContentGenerator-RS2GU6IS.js → openaiContentGenerator-EAVO6L3Y.js}
RENAMED
|
@@ -28,8 +28,8 @@ import {
|
|
|
28
28
|
OpenRouterOpenAICompatibleProvider,
|
|
29
29
|
createOpenAIContentGenerator,
|
|
30
30
|
determineProvider
|
|
31
|
-
} from "./chunk-
|
|
32
|
-
import "./chunk-
|
|
31
|
+
} from "./chunk-OIA427PZ.js";
|
|
32
|
+
import "./chunk-6ZOXSA5F.js";
|
|
33
33
|
import "./chunk-F77EGXST.js";
|
|
34
34
|
import "./chunk-2MUETKKX.js";
|
|
35
35
|
import "./chunk-MHFXK3XK.js";
|
package/dist/chunks/{papertContentGenerator-RYRJQVBF.js → papertContentGenerator-G4SBF3DR.js}
RENAMED
|
@@ -17,14 +17,14 @@ process.emitWarning = function patchedEmitWarning(warning, ...args) {
|
|
|
17
17
|
}
|
|
18
18
|
return __papertOriginalEmitWarning(warning, ...args);
|
|
19
19
|
};
|
|
20
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-7T4OCWHU.js";
|
|
21
21
|
import {
|
|
22
22
|
DashScopeOpenAICompatibleProvider,
|
|
23
23
|
OpenAIContentGenerator
|
|
24
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-OIA427PZ.js";
|
|
25
25
|
import {
|
|
26
26
|
DEFAULT_DASHSCOPE_BASE_URL
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-6ZOXSA5F.js";
|
|
28
28
|
import "./chunk-F77EGXST.js";
|
|
29
29
|
import "./chunk-2MUETKKX.js";
|
|
30
30
|
import "./chunk-B4UTHNG5.js";
|
package/dist/cli.js
CHANGED
|
@@ -57,7 +57,7 @@ async function mainEntrypoint() {
|
|
|
57
57
|
await serverCommand.handler(argv);
|
|
58
58
|
return;
|
|
59
59
|
}
|
|
60
|
-
const { main } = await import("./chunks/gemini-
|
|
60
|
+
const { main } = await import("./chunks/gemini-WYRXV2QC.js");
|
|
61
61
|
await main();
|
|
62
62
|
}
|
|
63
63
|
__name(mainEntrypoint, "mainEntrypoint");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papert-code/papert-code",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.94",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
"auth:docker": "gcloud auth configure-docker us-west1-docker.pkg.dev",
|
|
24
24
|
"auth": "npm run auth:npm && npm run auth:docker",
|
|
25
25
|
"generate": "node scripts/generate-git-commit-info.js",
|
|
26
|
+
"docs:commands:sync": "node scripts/command-doc-parity.mjs --write",
|
|
27
|
+
"docs:commands:check": "node scripts/command-doc-parity.mjs --check",
|
|
28
|
+
"perf:check": "node scripts/perf-budgets.mjs",
|
|
29
|
+
"bundle:check": "node scripts/bundle-budgets.mjs",
|
|
26
30
|
"generate:settings-schema": "node --import tsx scripts/generate-settings-schema.ts",
|
|
27
31
|
"build": "node scripts/build.js",
|
|
28
32
|
"build-and-start": "npm run build && npm run start",
|
|
@@ -44,7 +48,7 @@
|
|
|
44
48
|
"test:terminal-bench:papert": "cross-env VERBOSE=true KEEP_OUTPUT=true vitest run --config ./vitest.terminal-bench.config.ts --root ./integration-tests -t 'papert'",
|
|
45
49
|
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
|
|
46
50
|
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
|
|
47
|
-
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
|
|
51
|
+
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0 && npm run docs:commands:check && npm run perf:check",
|
|
48
52
|
"lint:all": "node scripts/lint.js",
|
|
49
53
|
"format": "prettier --experimental-cli --write .",
|
|
50
54
|
"typecheck": "npm run typecheck --workspaces --if-present",
|