@zhiman_innies/innies-codex 0.122.48 → 0.122.49
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/bin/innies-config.js +7 -0
- package/package.json +5 -5
package/bin/innies-config.js
CHANGED
|
@@ -561,6 +561,13 @@ function enforceDashscopeEnvKey(contents) {
|
|
|
561
561
|
return rewrote ? updated.join("\n") : contents;
|
|
562
562
|
}
|
|
563
563
|
|
|
564
|
+
// Exported for unit testing in scripts/test_innies_config.js. Keep
|
|
565
|
+
// the signature stable — the test imports it directly via
|
|
566
|
+
// `require()` and asserts on the input/output transform.
|
|
567
|
+
export function _enforceDashscopeEnvKeyForTest(contents) {
|
|
568
|
+
return enforceDashscopeEnvKey(contents);
|
|
569
|
+
}
|
|
570
|
+
|
|
564
571
|
function normalizeProviderBlock(contents, provider) {
|
|
565
572
|
const lines = contents.split(/\r?\n/);
|
|
566
573
|
const updated = [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhiman_innies/innies-codex",
|
|
3
|
-
"version": "0.122.
|
|
3
|
+
"version": "0.122.49",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"innies": "bin/innies.js"
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"postinstall": "node bin/innies-init.js"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@zhiman_innies/innies-codex-darwin-x64": "0.122.
|
|
27
|
-
"@zhiman_innies/innies-codex-darwin-arm64": "0.122.
|
|
28
|
-
"@zhiman_innies/innies-codex-win32-x64": "0.122.
|
|
29
|
-
"@zhiman_innies/innies-codex-win32-arm64": "0.122.
|
|
26
|
+
"@zhiman_innies/innies-codex-darwin-x64": "0.122.49-darwin-x64",
|
|
27
|
+
"@zhiman_innies/innies-codex-darwin-arm64": "0.122.49-darwin-arm64",
|
|
28
|
+
"@zhiman_innies/innies-codex-win32-x64": "0.122.49-win32-x64",
|
|
29
|
+
"@zhiman_innies/innies-codex-win32-arm64": "0.122.49-win32-arm64"
|
|
30
30
|
}
|
|
31
31
|
}
|