@base44-preview/cli 0.1.14-pr.626.0acc5e4 → 0.1.14-pr.626.1f4a29d
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/cli/index.js +3 -11
- package/dist/cli/index.js.map +4 -5
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -249480,12 +249480,6 @@ async function collectResources(configDir, dirs) {
|
|
|
249480
249480
|
]);
|
|
249481
249481
|
return { entities, agents };
|
|
249482
249482
|
}
|
|
249483
|
-
// src/core/version/gate.ts
|
|
249484
|
-
var VERSIONS_API_ENV = "BASE44_VERSIONS_API";
|
|
249485
|
-
function versionsApiEnabled(env = process.env) {
|
|
249486
|
-
const value = env[VERSIONS_API_ENV];
|
|
249487
|
-
return value === "1" || value === "true";
|
|
249488
|
-
}
|
|
249489
249483
|
// src/core/version/project.ts
|
|
249490
249484
|
import { dirname as dirname19, join as join27, resolve as resolve10 } from "node:path";
|
|
249491
249485
|
var DEFAULT_BUILD_COMMAND = "npm run build";
|
|
@@ -255910,10 +255904,8 @@ function createProgram(context) {
|
|
|
255910
255904
|
program.addCommand(getBranchesCommand());
|
|
255911
255905
|
program.addCommand(getAuthCommand());
|
|
255912
255906
|
program.addCommand(getSiteCommand());
|
|
255913
|
-
|
|
255914
|
-
|
|
255915
|
-
program.addCommand(getVersionsCommand());
|
|
255916
|
-
}
|
|
255907
|
+
program.addCommand(getPublishCommand());
|
|
255908
|
+
program.addCommand(getVersionsCommand());
|
|
255917
255909
|
program.addCommand(getTypesCommand());
|
|
255918
255910
|
program.addCommand(getExecCommand());
|
|
255919
255911
|
program.addCommand(getDevCommand());
|
|
@@ -259965,4 +259957,4 @@ export {
|
|
|
259965
259957
|
runCLI
|
|
259966
259958
|
};
|
|
259967
259959
|
|
|
259968
|
-
//# debugId=
|
|
259960
|
+
//# debugId=2D9E75E3489C289064756E2164756E21
|