abtars 0.1.0-alpha.17 → 0.1.0-alpha.18
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/bundle/abtars-cli.js +5 -4
- package/bundle/abtars-cli.js.map +2 -2
- package/bundle/abtars.js +2 -2
- package/bundle/chunk-YHWZNCKL.js +645 -0
- package/bundle/chunk-YHWZNCKL.js.map +7 -0
- package/bundle/meta.json +13 -13
- package/bundle/phase-transport-O3N4SANJ.js +23 -0
- package/bundle/phase-transport-O3N4SANJ.js.map +7 -0
- package/package.json +1 -1
package/bundle/abtars-cli.js
CHANGED
|
@@ -1735,10 +1735,11 @@ Update complete: ${staged.version}
|
|
|
1735
1735
|
const destConfig = join9(paths.home, "config");
|
|
1736
1736
|
if (existsSync7(releaseConfig)) {
|
|
1737
1737
|
for (const f of readdirSync3(releaseConfig)) {
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1738
|
+
const src = join9(releaseConfig, f);
|
|
1739
|
+
if (f.endsWith(".example")) {
|
|
1740
|
+
cpSync(src, join9(destConfig, f));
|
|
1741
|
+
const target = join9(destConfig, f.replace(".example", ""));
|
|
1742
|
+
if (!existsSync7(target)) cpSync(src, target);
|
|
1742
1743
|
}
|
|
1743
1744
|
}
|
|
1744
1745
|
const defaultTransport = join9(releaseConfig, "transport.default.json");
|