@base44-preview/cli 0.0.51-pr.503.9478486 → 0.0.51-pr.503.a910f3e
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 +6 -6
- package/dist/cli/index.js.map +3 -3
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -124338,7 +124338,7 @@ var init_prettier = __esm(() => {
|
|
|
124338
124338
|
const absolute = [];
|
|
124339
124339
|
const relative22 = [];
|
|
124340
124340
|
for (const pattern of patterns) {
|
|
124341
|
-
if (
|
|
124341
|
+
if (isAbsolute3(pattern)) {
|
|
124342
124342
|
absolute.push(pattern);
|
|
124343
124343
|
} else {
|
|
124344
124344
|
relative22.push(pattern);
|
|
@@ -124347,10 +124347,10 @@ var init_prettier = __esm(() => {
|
|
|
124347
124347
|
return [absolute, relative22];
|
|
124348
124348
|
}
|
|
124349
124349
|
exports.partitionAbsoluteAndRelative = partitionAbsoluteAndRelative;
|
|
124350
|
-
function
|
|
124350
|
+
function isAbsolute3(pattern) {
|
|
124351
124351
|
return path152.isAbsolute(pattern);
|
|
124352
124352
|
}
|
|
124353
|
-
exports.isAbsolute =
|
|
124353
|
+
exports.isAbsolute = isAbsolute3;
|
|
124354
124354
|
}
|
|
124355
124355
|
});
|
|
124356
124356
|
require_merge22 = __commonJS2({
|
|
@@ -241581,7 +241581,7 @@ var generateGlobTasksSync = normalizeArgumentsSync(generateTasksSync);
|
|
|
241581
241581
|
|
|
241582
241582
|
// src/core/project/config.ts
|
|
241583
241583
|
import { createRequire as createRequire2 } from "node:module";
|
|
241584
|
-
import { dirname as dirname5, join as join8, resolve } from "node:path";
|
|
241584
|
+
import { dirname as dirname5, isAbsolute as isAbsolute2, join as join8, resolve } from "node:path";
|
|
241585
241585
|
|
|
241586
241586
|
// src/core/resources/agent/schema.ts
|
|
241587
241587
|
var EntityOperationSchema = exports_external.enum(["create", "update", "delete", "read"]);
|
|
@@ -243153,7 +243153,7 @@ var functionResource = {
|
|
|
243153
243153
|
};
|
|
243154
243154
|
// src/core/project/config.ts
|
|
243155
243155
|
function resolvePluginRoot(pluginRef, fromRoot) {
|
|
243156
|
-
if (pluginRef.startsWith(".")) {
|
|
243156
|
+
if (pluginRef.startsWith(".") || isAbsolute2(pluginRef)) {
|
|
243157
243157
|
return resolve(fromRoot, pluginRef);
|
|
243158
243158
|
}
|
|
243159
243159
|
const req = createRequire2(join8(fromRoot, "package.json"));
|
|
@@ -260929,4 +260929,4 @@ export {
|
|
|
260929
260929
|
CLIExitError
|
|
260930
260930
|
};
|
|
260931
260931
|
|
|
260932
|
-
//# debugId=
|
|
260932
|
+
//# debugId=9C297F3E77E38E4B64756E2164756E21
|