staklink 0.3.90 → 0.3.92
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/proxy-server.cjs +4 -2
- package/dist/staklink-cli.cjs +1 -1
- package/package.json +1 -1
package/dist/proxy-server.cjs
CHANGED
|
@@ -61258,7 +61258,7 @@ var SSEManager = class {
|
|
|
61258
61258
|
var sseManager = new SSEManager();
|
|
61259
61259
|
|
|
61260
61260
|
// src/proxy/version.ts
|
|
61261
|
-
var VERSION = "0.3.
|
|
61261
|
+
var VERSION = "0.3.92";
|
|
61262
61262
|
|
|
61263
61263
|
// node_modules/uuid/dist/esm/stringify.js
|
|
61264
61264
|
var byteToHex = [];
|
|
@@ -136944,7 +136944,9 @@ var makeRepairPrompt = (podConfigPath, history, initialPrompt) => {
|
|
|
136944
136944
|
let p = initialPrompt ? initialPrompt : REPAIR_PROMPT;
|
|
136945
136945
|
p += `
|
|
136946
136946
|
|
|
136947
|
-
The config files can be read at ${podConfigPath}. You must find out how to edit the pm2.config.js and the docker-compose.yaml in order to get the project to run successfully (there is also a Dockerfile which may also be changed if absolutely needed). Remember that you may need to add or alter env vars in the pm2.config.js file. Focus on the frontend app defined in the pm2 config file, don't worry about other services unless they are needed to run the frontend. For example, if its a next.js app, you can read the package.json to see what SHOULD be in the pm2 "script" command or the special install/build/etc commands. REMEMBER: this is a development environment, so the pm2 script should be something like "npm run dev" or something similar... we want to default to whatever start script is best for development (like whatever has hot-reload etc).
|
|
136947
|
+
The config files can be read at ${podConfigPath}. You must find out how to edit the pm2.config.js and the docker-compose.yaml in order to get the project to run successfully (there is also a Dockerfile which may also be changed if absolutely needed). Remember that you may need to add or alter env vars in the pm2.config.js file. Focus on the frontend app defined in the pm2 config file, don't worry about other services unless they are needed to run the frontend. For example, if its a next.js app, you can read the package.json to see what SHOULD be in the pm2 "script" command or the special install/build/etc commands. REMEMBER: this is a development environment, so the pm2 script should be something like "npm run dev" or something similar... we want to default to whatever start script is best for development (like whatever has hot-reload etc). If its a simple backend api project, then thats fine to be defined as the "frontend". If there really is no public-facing frontend or api, then the "frontend" pm2 service should just be a dummy server: "npx -y hell0-w0rld". Its important that we have at least SOMETHING running as the "frontend" so we can verify that the pod is running smoothly!
|
|
136948
|
+
|
|
136949
|
+
IMPORTANT: You may be in a multi-repo workspace! If so, make sure the "cwd" field for each appin the pm2.config.js specifies different paths to each repo! Like "/workspaces/repo1", "/workspaces/repo2", etc.
|
|
136948
136950
|
|
|
136949
136951
|
This project is currently running a remote code-server instance. Docker is optional, but may be used. The docker-compose file has already been started. You can use the regular docker commands (docker ps, docker logs, etc) to inspect the running containers.
|
|
136950
136952
|
|
package/dist/staklink-cli.cjs
CHANGED
|
@@ -10967,7 +10967,7 @@ var glob = Object.assign(glob_, {
|
|
|
10967
10967
|
glob.glob = glob;
|
|
10968
10968
|
|
|
10969
10969
|
// src/proxy/version.ts
|
|
10970
|
-
var VERSION = "0.3.
|
|
10970
|
+
var VERSION = "0.3.92";
|
|
10971
10971
|
|
|
10972
10972
|
// src/goose.ts
|
|
10973
10973
|
var import_child_process = require("child_process");
|