@rdmind/rdmind 0.0.24-alpha.1 → 0.0.24
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/cli.js +7 -7
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -183764,7 +183764,7 @@ function createContentGeneratorConfig(config, authType, generationConfig) {
|
|
|
183764
183764
|
};
|
|
183765
183765
|
}
|
|
183766
183766
|
async function createContentGenerator(config, gcConfig, sessionId2) {
|
|
183767
|
-
const version2 = "0.0.24
|
|
183767
|
+
const version2 = "0.0.24";
|
|
183768
183768
|
const userAgent2 = `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
183769
183769
|
const baseHeaders = {
|
|
183770
183770
|
"User-Agent": userAgent2
|
|
@@ -234079,12 +234079,12 @@ var init_ripGrep = __esm({
|
|
|
234079
234079
|
rgArgs.push("--no-ignore-vcs");
|
|
234080
234080
|
}
|
|
234081
234081
|
if (filteringOptions.respectQwenIgnore) {
|
|
234082
|
-
const
|
|
234082
|
+
const rdmindIgnorePath = path40.join(
|
|
234083
234083
|
this.config.getTargetDir(),
|
|
234084
|
-
".
|
|
234084
|
+
".rdmindignore"
|
|
234085
234085
|
);
|
|
234086
|
-
if (fs36.existsSync(
|
|
234087
|
-
rgArgs.push("--ignore-file",
|
|
234086
|
+
if (fs36.existsSync(rdmindIgnorePath)) {
|
|
234087
|
+
rgArgs.push("--ignore-file", rdmindIgnorePath);
|
|
234088
234088
|
}
|
|
234089
234089
|
}
|
|
234090
234090
|
if (glob2) {
|
|
@@ -342366,7 +342366,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
342366
342366
|
// packages/cli/src/utils/version.ts
|
|
342367
342367
|
async function getCliVersion() {
|
|
342368
342368
|
const pkgJson = await getPackageJson();
|
|
342369
|
-
return "0.0.24
|
|
342369
|
+
return "0.0.24";
|
|
342370
342370
|
}
|
|
342371
342371
|
__name(getCliVersion, "getCliVersion");
|
|
342372
342372
|
|
|
@@ -344367,7 +344367,7 @@ init_core2();
|
|
|
344367
344367
|
|
|
344368
344368
|
// packages/cli/src/generated/git-commit.ts
|
|
344369
344369
|
init_esbuild_shims();
|
|
344370
|
-
var GIT_COMMIT_INFO2 = "
|
|
344370
|
+
var GIT_COMMIT_INFO2 = "3ad64861";
|
|
344371
344371
|
|
|
344372
344372
|
// packages/cli/src/utils/systemInfo.ts
|
|
344373
344373
|
async function getNpmVersion() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.0.24
|
|
3
|
+
"version": "0.0.24",
|
|
4
4
|
"description": "RDMind - AI-powered coding assistant",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "cli.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"LICENSE"
|
|
20
20
|
],
|
|
21
21
|
"config": {
|
|
22
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.24
|
|
22
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.24"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|