@learnrudi/cli 1.10.7 → 1.10.8
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/index.cjs +1 -1
- package/dist/packages-manifest.json +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -40670,7 +40670,7 @@ async function cmdStudio(args, flags) {
|
|
|
40670
40670
|
}
|
|
40671
40671
|
|
|
40672
40672
|
// src/index.js
|
|
40673
|
-
var VERSION2 = "
|
|
40673
|
+
var VERSION2 = true ? "1.10.8" : process.env.npm_package_version || "0.0.0";
|
|
40674
40674
|
async function main() {
|
|
40675
40675
|
const { command, args, flags } = parseArgs(process.argv.slice(2));
|
|
40676
40676
|
if (flags.version || flags.v) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learnrudi/cli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.8",
|
|
4
4
|
"description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"start": "node src/index.js",
|
|
17
17
|
"prebuild": "node scripts/generate-manifest.js",
|
|
18
|
-
"build": "esbuild src/index.js --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:better-sqlite3 && cp src/router-mcp.js dist/router-mcp.js && cp src/packages-manifest.json dist/packages-manifest.json",
|
|
18
|
+
"build": "esbuild src/index.js --bundle --platform=node --format=cjs --outfile=dist/index.cjs --define:__RUDI_CLI_VERSION__=$(node -p \"JSON.stringify(require('./package.json').version)\") --external:better-sqlite3 && cp src/router-mcp.js dist/router-mcp.js && cp src/packages-manifest.json dist/packages-manifest.json",
|
|
19
19
|
"postinstall": "node scripts/postinstall.js",
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
21
|
"test": "node --test src/__tests__/"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
],
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/learn-rudi/cli.git"
|
|
54
|
+
"url": "git+https://github.com/learn-rudi/cli.git"
|
|
55
55
|
},
|
|
56
56
|
"homepage": "https://learnrudi.com",
|
|
57
57
|
"publishConfig": {
|