@fern-api/fern-api-dev 3.63.0-2-gc44289e9e92 → 3.64.0
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.cjs +6 -4
- package/package.json +1 -1
package/cli.cjs
CHANGED
|
@@ -1426227,7 +1426227,7 @@ var AccessTokenPosthogManager = class {
|
|
|
1426227
1426227
|
properties: {
|
|
1426228
1426228
|
...event,
|
|
1426229
1426229
|
...event.properties,
|
|
1426230
|
-
version: "3.
|
|
1426230
|
+
version: "3.64.0",
|
|
1426231
1426231
|
usingAccessToken: true
|
|
1426232
1426232
|
}
|
|
1426233
1426233
|
});
|
|
@@ -1426326,7 +1426326,7 @@ var UserPosthogManager = class {
|
|
|
1426326
1426326
|
distinctId: this.userId ?? await this.getPersistedDistinctId(),
|
|
1426327
1426327
|
event: "CLI",
|
|
1426328
1426328
|
properties: {
|
|
1426329
|
-
version: "3.
|
|
1426329
|
+
version: "3.64.0",
|
|
1426330
1426330
|
...event,
|
|
1426331
1426331
|
...event.properties,
|
|
1426332
1426332
|
usingAccessToken: false,
|
|
@@ -1617474,6 +1617474,7 @@ var LocalTaskHandler = class {
|
|
|
1617474
1617474
|
await this.copyGeneratedFilesToDirectory(this.absolutePathToLocalOutput);
|
|
1617475
1617475
|
await this.runGitCommand(["add", "."], this.absolutePathToLocalOutput);
|
|
1617476
1617476
|
await this.runGitCommand(["reset", "--", ...fernIgnorePaths], this.absolutePathToLocalOutput);
|
|
1617477
|
+
await this.runGitCommand(["clean", "-fd", "--", ...fernIgnorePaths], this.absolutePathToLocalOutput);
|
|
1617477
1617478
|
await this.runGitCommand(["restore", "."], this.absolutePathToLocalOutput);
|
|
1617478
1617479
|
}
|
|
1617479
1617480
|
async copyGeneratedFilesWithFernIgnoreInTempRepo() {
|
|
@@ -1617493,6 +1617494,7 @@ var LocalTaskHandler = class {
|
|
|
1617493
1617494
|
await this.copyGeneratedFilesToDirectory(tmpOutputResolutionDir);
|
|
1617494
1617495
|
await this.runGitCommand(["add", "."], tmpOutputResolutionDir);
|
|
1617495
1617496
|
await this.runGitCommand(["reset", "--", ...fernIgnorePaths], tmpOutputResolutionDir);
|
|
1617497
|
+
await this.runGitCommand(["clean", "-fd", "--", ...fernIgnorePaths], tmpOutputResolutionDir);
|
|
1617496
1617498
|
await this.runGitCommand(["restore", "."], tmpOutputResolutionDir);
|
|
1617497
1617499
|
await (0, import_promises55.rm)(join4(tmpOutputResolutionDir, RelativeFilePath2.of(".git")), { recursive: true });
|
|
1617498
1617500
|
await (0, import_promises55.rm)(this.absolutePathToLocalOutput, { recursive: true });
|
|
@@ -1712139,7 +1712141,7 @@ var CliContext = class {
|
|
|
1712139
1712141
|
if (false) {
|
|
1712140
1712142
|
this.logger.error("CLI_VERSION is not defined");
|
|
1712141
1712143
|
}
|
|
1712142
|
-
return "3.
|
|
1712144
|
+
return "3.64.0";
|
|
1712143
1712145
|
}
|
|
1712144
1712146
|
getCliName() {
|
|
1712145
1712147
|
if (false) {
|
|
@@ -1715253,7 +1715255,7 @@ var import_path56 = __toESM(require("path"), 1);
|
|
|
1715253
1715255
|
var LOCAL_STORAGE_FOLDER4 = ".fern-dev";
|
|
1715254
1715256
|
var LOGS_FOLDER_NAME = "logs";
|
|
1715255
1715257
|
function getCliSource() {
|
|
1715256
|
-
const version7 = "3.
|
|
1715258
|
+
const version7 = "3.64.0";
|
|
1715257
1715259
|
return `cli@${version7}`;
|
|
1715258
1715260
|
}
|
|
1715259
1715261
|
var DebugLogger = class {
|
package/package.json
CHANGED