@jamiexiongr/panda-hub 0.0.0-fallback-test-2 → 0.0.0-test
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.
|
@@ -32151,24 +32151,23 @@ var createDevManager = ({
|
|
|
32151
32151
|
};
|
|
32152
32152
|
const runNpmPublish = async () => {
|
|
32153
32153
|
const { config, credentials } = await readStoredConfig(codexHome);
|
|
32154
|
-
const npmToken = credentials.npm_token;
|
|
32155
32154
|
await validateRepoPath(config.repo_path);
|
|
32156
32155
|
if (!config.repo_path) {
|
|
32157
32156
|
throw new Error("\u8BF7\u5148\u914D\u7F6E\u5F00\u53D1\u7248\u4EE3\u7801\u8DEF\u5F84\u3002");
|
|
32158
32157
|
}
|
|
32159
|
-
if (!
|
|
32158
|
+
if (!credentials.npm_token) {
|
|
32160
32159
|
throw new Error("\u8BF7\u5148\u5728\u8BBE\u7F6E\u9875\u4FDD\u5B58 npm \u4EE4\u724C\u3002");
|
|
32161
32160
|
}
|
|
32162
32161
|
return runManagedJob("npm-publish", "\u53D1\u5E03 npm \u6B63\u5F0F\u5305", async (job) => {
|
|
32163
32162
|
await job.append("info", "\u51C6\u5907\u6267\u884C release-publish \u811A\u672C\u3002");
|
|
32164
|
-
const userConfigPath = await createTempNpmPublishUserConfig(
|
|
32163
|
+
const userConfigPath = await createTempNpmPublishUserConfig(credentials.npm_token);
|
|
32165
32164
|
try {
|
|
32166
32165
|
const command = await resolveManagedCommand({
|
|
32167
32166
|
projectPath: config.repo_path,
|
|
32168
32167
|
command: "node ./scripts/release-publish.mjs",
|
|
32169
32168
|
nodeVersion: config.nvm_version,
|
|
32170
32169
|
env: {
|
|
32171
|
-
NODE_AUTH_TOKEN:
|
|
32170
|
+
NODE_AUTH_TOKEN: credentials.npm_token,
|
|
32172
32171
|
NPM_CONFIG_USERCONFIG: userConfigPath,
|
|
32173
32172
|
PANDA_NPM_PUBLISH_USERCONFIG: userConfigPath
|
|
32174
32173
|
}
|
|
@@ -33856,7 +33855,7 @@ var startPandaSessionService = async ({
|
|
|
33856
33855
|
return nextOverlayEntries;
|
|
33857
33856
|
};
|
|
33858
33857
|
const readTimelineFromRollout = async (sessionId) => {
|
|
33859
|
-
const { readCodexTimeline } = await import("./src-
|
|
33858
|
+
const { readCodexTimeline } = await import("./src-J7QR63ID.mjs");
|
|
33860
33859
|
return readCodexTimeline(sessionId, {
|
|
33861
33860
|
codexHome,
|
|
33862
33861
|
sessionFiles: discoveredSessionFiles
|
|
@@ -35324,7 +35323,7 @@ var startPandaSessionService = async ({
|
|
|
35324
35323
|
lastSnapshotRefreshAt = Date.now();
|
|
35325
35324
|
return snapshot;
|
|
35326
35325
|
}
|
|
35327
|
-
const { discoverLocalCodexData } = await import("./src-
|
|
35326
|
+
const { discoverLocalCodexData } = await import("./src-J7QR63ID.mjs");
|
|
35328
35327
|
const discovery = await discoverLocalCodexData({
|
|
35329
35328
|
agentId: localAgentId,
|
|
35330
35329
|
agentName: localAgentName,
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
resolveTailscalePublicationMode,
|
|
6
6
|
resolveTailscaleServePort,
|
|
7
7
|
startPandaSessionService
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-27JI5SI4.mjs";
|
|
9
9
|
|
|
10
10
|
// release/panda-hub/src/index.ts
|
|
11
11
|
import fs from "fs";
|
|
@@ -15,7 +15,7 @@ import { fileURLToPath } from "url";
|
|
|
15
15
|
// release/panda-hub/package.json
|
|
16
16
|
var package_default = {
|
|
17
17
|
name: "@jamiexiongr/panda-hub",
|
|
18
|
-
version: "0.0.0-
|
|
18
|
+
version: "0.0.0-test",
|
|
19
19
|
type: "module",
|
|
20
20
|
private: false,
|
|
21
21
|
description: "Panda hub runtime",
|
package/dist/cli.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
startJamiexiongrHub
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-JBHYLCEW.mjs";
|
|
4
4
|
import {
|
|
5
5
|
resolveTailscalePublicationMode
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-27JI5SI4.mjs";
|
|
7
7
|
import "./chunk-JY3C7BVD.mjs";
|
|
8
8
|
|
|
9
9
|
// release/panda-hub/src/cli.ts
|
package/dist/index.mjs
CHANGED