@stacksjs/path 0.70.88 → 0.70.91
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/index.d.ts +1100 -0
- package/dist/index.js +742 -0
- package/package.json +1 -1
package/dist/index.js
ADDED
|
@@ -0,0 +1,742 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
var __require = import.meta.require;
|
|
3
|
+
|
|
4
|
+
// src/index.ts
|
|
5
|
+
import { existsSync } from "fs";
|
|
6
|
+
import os from "os";
|
|
7
|
+
import {
|
|
8
|
+
basename,
|
|
9
|
+
delimiter,
|
|
10
|
+
dirname,
|
|
11
|
+
extname,
|
|
12
|
+
isAbsolute,
|
|
13
|
+
join,
|
|
14
|
+
normalize,
|
|
15
|
+
parse,
|
|
16
|
+
relative,
|
|
17
|
+
resolve,
|
|
18
|
+
sep,
|
|
19
|
+
toNamespacedPath
|
|
20
|
+
} from "path";
|
|
21
|
+
import process from "process";
|
|
22
|
+
async function debugLog(message) {
|
|
23
|
+
try {
|
|
24
|
+
const { log } = await import("@stacksjs/logging");
|
|
25
|
+
log.debug(message);
|
|
26
|
+
} catch {
|
|
27
|
+
console.debug(message);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
function actionsPath(path) {
|
|
31
|
+
return corePath(`actions/${path || ""}`);
|
|
32
|
+
}
|
|
33
|
+
function relativeActionsPath(path) {
|
|
34
|
+
return relative(projectPath(), actionsPath(path));
|
|
35
|
+
}
|
|
36
|
+
function userActionsPath(path, options) {
|
|
37
|
+
const absolutePath = appPath(`Actions/${path || ""}`);
|
|
38
|
+
if (options?.relative)
|
|
39
|
+
return relative(process.cwd(), absolutePath);
|
|
40
|
+
return absolutePath;
|
|
41
|
+
}
|
|
42
|
+
function builtUserActionsPath(path, options) {
|
|
43
|
+
const absolutePath = frameworkPath(`actions/${path || ""}`);
|
|
44
|
+
if (options?.relative)
|
|
45
|
+
return relative(process.cwd(), absolutePath);
|
|
46
|
+
return absolutePath;
|
|
47
|
+
}
|
|
48
|
+
function userComponentsPath(path) {
|
|
49
|
+
return libsPath(`components/${path || ""}`);
|
|
50
|
+
}
|
|
51
|
+
function userViewsPath(path) {
|
|
52
|
+
return resourcesPath(`views/${path || ""}`);
|
|
53
|
+
}
|
|
54
|
+
function userFunctionsPath(path) {
|
|
55
|
+
return `${resolveUserLibBase(projectPath("functions"), resourcesPath("functions"))}/${path || ""}`;
|
|
56
|
+
}
|
|
57
|
+
function resolveUserLibBase(rootDir, resourcesDir, exists = existsSync) {
|
|
58
|
+
return exists(rootDir) ? rootDir : resourcesDir;
|
|
59
|
+
}
|
|
60
|
+
function userJobsPath(path) {
|
|
61
|
+
return appPath(`Jobs/${path || ""}`);
|
|
62
|
+
}
|
|
63
|
+
function userControllersPath(path) {
|
|
64
|
+
return appPath(`Controllers/${path || ""}`);
|
|
65
|
+
}
|
|
66
|
+
function userListenersPath(path) {
|
|
67
|
+
return appPath(`Listeners/${path || ""}`);
|
|
68
|
+
}
|
|
69
|
+
function userMiddlewarePath(path) {
|
|
70
|
+
return appPath(`Middleware/${path || ""}`);
|
|
71
|
+
}
|
|
72
|
+
function userModelsPath(path) {
|
|
73
|
+
return appPath(`Models/${path || ""}`);
|
|
74
|
+
}
|
|
75
|
+
function userNotificationsPath(path) {
|
|
76
|
+
return appPath(`Notifications/${path || ""}`);
|
|
77
|
+
}
|
|
78
|
+
function userMailPath(path) {
|
|
79
|
+
return appPath(`Mail/${path || ""}`);
|
|
80
|
+
}
|
|
81
|
+
function userEmailsPath(path) {
|
|
82
|
+
return resourcesPath(`emails/${path || ""}`);
|
|
83
|
+
}
|
|
84
|
+
function userDatabasePath(path) {
|
|
85
|
+
return projectPath(`database/${path || ""}`);
|
|
86
|
+
}
|
|
87
|
+
function userMigrationsPath(path) {
|
|
88
|
+
return userDatabasePath(`migrations/${path || ""}`);
|
|
89
|
+
}
|
|
90
|
+
function userEventsPath() {
|
|
91
|
+
return appPath(`Events.ts`);
|
|
92
|
+
}
|
|
93
|
+
function aiPath(path) {
|
|
94
|
+
return corePath(`ai/${path || ""}`);
|
|
95
|
+
}
|
|
96
|
+
function assetsPath(path) {
|
|
97
|
+
return resourcesPath(`assets/${path || ""}`);
|
|
98
|
+
}
|
|
99
|
+
function aliasPath() {
|
|
100
|
+
return corePath("alias/src/index.ts");
|
|
101
|
+
}
|
|
102
|
+
function buddyPath(path, options) {
|
|
103
|
+
const absolutePath = corePath(`buddy/${path || ""}`);
|
|
104
|
+
if (options?.relative)
|
|
105
|
+
return relative(process.cwd(), absolutePath);
|
|
106
|
+
return absolutePath;
|
|
107
|
+
}
|
|
108
|
+
function runtimePath(path) {
|
|
109
|
+
return frameworkPath(`buddy/${path || ""}`);
|
|
110
|
+
}
|
|
111
|
+
function analyticsPath(path) {
|
|
112
|
+
return corePath(`analytics/${path || ""}`);
|
|
113
|
+
}
|
|
114
|
+
function arraysPath(path) {
|
|
115
|
+
return corePath(`arrays/${path || ""}`);
|
|
116
|
+
}
|
|
117
|
+
function appPath(path, options) {
|
|
118
|
+
const absolutePath = projectPath(`app/${path || ""}`);
|
|
119
|
+
if (options?.relative)
|
|
120
|
+
return relative(options.cwd || process.cwd(), absolutePath);
|
|
121
|
+
return absolutePath;
|
|
122
|
+
}
|
|
123
|
+
function defaultsAppPath(path) {
|
|
124
|
+
return frameworkPath(`defaults/app/${path || ""}`);
|
|
125
|
+
}
|
|
126
|
+
function defaultsResourcesPath(path) {
|
|
127
|
+
return frameworkPath(`defaults/resources/${path || ""}`);
|
|
128
|
+
}
|
|
129
|
+
function authPath(path) {
|
|
130
|
+
return corePath(`auth/${path || ""}`);
|
|
131
|
+
}
|
|
132
|
+
function coreApiPath(path) {
|
|
133
|
+
return corePath(`api/${path || ""}`);
|
|
134
|
+
}
|
|
135
|
+
function buildPath(path) {
|
|
136
|
+
return corePath(`build/${path || ""}`);
|
|
137
|
+
}
|
|
138
|
+
function buildEnginePath(path) {
|
|
139
|
+
return buildPath(`${path || ""}`);
|
|
140
|
+
}
|
|
141
|
+
function libsPath(path) {
|
|
142
|
+
return frameworkPath(`libs/${path || ""}`);
|
|
143
|
+
}
|
|
144
|
+
function userLibsPath(path) {
|
|
145
|
+
return resourcesPath(`${path || ""}`);
|
|
146
|
+
}
|
|
147
|
+
function libsEntriesPath(path) {
|
|
148
|
+
return libsPath(`entries/${path || ""}`);
|
|
149
|
+
}
|
|
150
|
+
function cachePath(path) {
|
|
151
|
+
return corePath(`cache/${path || ""}`);
|
|
152
|
+
}
|
|
153
|
+
function chatPath(path) {
|
|
154
|
+
return corePath(`chat/${path || ""}`);
|
|
155
|
+
}
|
|
156
|
+
function chartsPath(path) {
|
|
157
|
+
return corePath(`charts/${path || ""}`);
|
|
158
|
+
}
|
|
159
|
+
function cliPath(path) {
|
|
160
|
+
return corePath(`cli/${path || ""}`);
|
|
161
|
+
}
|
|
162
|
+
function cloudPath(path) {
|
|
163
|
+
return corePath(`cloud/${path || ""}`);
|
|
164
|
+
}
|
|
165
|
+
function frameworkCloudPath(path) {
|
|
166
|
+
return frameworkPath(`cloud/${path || ""}`);
|
|
167
|
+
}
|
|
168
|
+
function collectionsPath(path) {
|
|
169
|
+
return corePath(`collections/${path || ""}`);
|
|
170
|
+
}
|
|
171
|
+
function commandsPath(path) {
|
|
172
|
+
return appPath(`Commands/${path || ""}`);
|
|
173
|
+
}
|
|
174
|
+
function componentsPath(path) {
|
|
175
|
+
return `${resolveUserLibBase(projectPath("components"), resourcesPath("components"))}/${path || ""}`;
|
|
176
|
+
}
|
|
177
|
+
function configPath(path) {
|
|
178
|
+
return corePath(`config/${path || ""}`);
|
|
179
|
+
}
|
|
180
|
+
function corePath(path) {
|
|
181
|
+
return frameworkPath(`core/${path || ""}`);
|
|
182
|
+
}
|
|
183
|
+
function customElementsDataPath() {
|
|
184
|
+
return frameworkPath("core/custom-elements.json");
|
|
185
|
+
}
|
|
186
|
+
function databasePath(path) {
|
|
187
|
+
return corePath(`database/${path || ""}`);
|
|
188
|
+
}
|
|
189
|
+
function datetimePath(path) {
|
|
190
|
+
return corePath(`datetime/${path || ""}`);
|
|
191
|
+
}
|
|
192
|
+
function developmentPath(path) {
|
|
193
|
+
return corePath(`development/${path || ""}`);
|
|
194
|
+
}
|
|
195
|
+
function desktopPath(path) {
|
|
196
|
+
return corePath(`desktop/${path || ""}`);
|
|
197
|
+
}
|
|
198
|
+
function docsPath(path) {
|
|
199
|
+
return corePath(`docs/${path || ""}`);
|
|
200
|
+
}
|
|
201
|
+
function dnsPath(path) {
|
|
202
|
+
return corePath(`domains/${path || ""}`);
|
|
203
|
+
}
|
|
204
|
+
function emailPath(path) {
|
|
205
|
+
return notificationsPath(`email/${path || ""}`);
|
|
206
|
+
}
|
|
207
|
+
function enumsPath(path) {
|
|
208
|
+
return corePath(`enums/${path || ""}`);
|
|
209
|
+
}
|
|
210
|
+
function eslintPluginPath(path) {
|
|
211
|
+
return corePath(`eslint-plugin/${path || ""}`);
|
|
212
|
+
}
|
|
213
|
+
function errorHandlingPath(path) {
|
|
214
|
+
return corePath(`error-handling/${path || ""}`);
|
|
215
|
+
}
|
|
216
|
+
function eventsPath(path) {
|
|
217
|
+
return corePath(`events/${path || ""}`);
|
|
218
|
+
}
|
|
219
|
+
function featureFlagsPath(path) {
|
|
220
|
+
return corePath(`feature-flags/${path || ""}`);
|
|
221
|
+
}
|
|
222
|
+
function coreEnvPath(path) {
|
|
223
|
+
return corePath(`env/${path || ""}`);
|
|
224
|
+
}
|
|
225
|
+
function examplesPath(type) {
|
|
226
|
+
return frameworkPath(`examples/${type || ""}`);
|
|
227
|
+
}
|
|
228
|
+
function fakerPath(path) {
|
|
229
|
+
return corePath(`faker/${path || ""}`);
|
|
230
|
+
}
|
|
231
|
+
function frameworkPath(path, options) {
|
|
232
|
+
const absolutePath = storagePath(`framework/${path || ""}`);
|
|
233
|
+
if (options?.relative)
|
|
234
|
+
return relative(options.cwd || process.cwd(), absolutePath);
|
|
235
|
+
return absolutePath;
|
|
236
|
+
}
|
|
237
|
+
function browserPath(path) {
|
|
238
|
+
return corePath(`browser/${path || ""}`);
|
|
239
|
+
}
|
|
240
|
+
function healthPath(path) {
|
|
241
|
+
return corePath(`health/${path || ""}`);
|
|
242
|
+
}
|
|
243
|
+
function functionsPath(path) {
|
|
244
|
+
return `${resolveUserLibBase(projectPath("functions"), resourcesPath("functions"))}/${path || ""}`;
|
|
245
|
+
}
|
|
246
|
+
function gitPath(path) {
|
|
247
|
+
return corePath(`git/${path || ""}`);
|
|
248
|
+
}
|
|
249
|
+
function langPath(path) {
|
|
250
|
+
return resourcesPath(`lang/${path || ""}`);
|
|
251
|
+
}
|
|
252
|
+
function layoutsPath(path, options) {
|
|
253
|
+
let absolutePath;
|
|
254
|
+
if (options?.defaults)
|
|
255
|
+
absolutePath = frameworkPath(`defaults/resources/layouts/${path || ""}`);
|
|
256
|
+
else
|
|
257
|
+
absolutePath = resourcesPath(`layouts/${path || ""}`);
|
|
258
|
+
if (options?.relative)
|
|
259
|
+
return relative(process.cwd(), absolutePath);
|
|
260
|
+
return absolutePath;
|
|
261
|
+
}
|
|
262
|
+
function libraryEntryPath(type) {
|
|
263
|
+
return libsEntriesPath(`${type}.ts`);
|
|
264
|
+
}
|
|
265
|
+
function lintPath(path) {
|
|
266
|
+
return corePath(`lint/${path || ""}`);
|
|
267
|
+
}
|
|
268
|
+
function listenersPath(path) {
|
|
269
|
+
return appPath(`Listeners/${path || ""}`);
|
|
270
|
+
}
|
|
271
|
+
function jobsPath(path) {
|
|
272
|
+
return appPath(`Jobs/${path || ""}`);
|
|
273
|
+
}
|
|
274
|
+
function loggingPath(path) {
|
|
275
|
+
return corePath(`logging/${path || ""}`);
|
|
276
|
+
}
|
|
277
|
+
function logsPath(path) {
|
|
278
|
+
return storagePath(`logs/${path || ""}`);
|
|
279
|
+
}
|
|
280
|
+
function modelsPath(path) {
|
|
281
|
+
return appPath(`models/${path || ""}`);
|
|
282
|
+
}
|
|
283
|
+
function modulesPath(path) {
|
|
284
|
+
return resourcesPath(`modules/${path || ""}`);
|
|
285
|
+
}
|
|
286
|
+
function notificationsPath(path) {
|
|
287
|
+
return corePath(`notifications/${path || ""}`);
|
|
288
|
+
}
|
|
289
|
+
function newsletterPath(path) {
|
|
290
|
+
return corePath(`newsletter/${path || ""}`);
|
|
291
|
+
}
|
|
292
|
+
function ormPath(path) {
|
|
293
|
+
return corePath(`orm/${path || ""}`);
|
|
294
|
+
}
|
|
295
|
+
function objectsPath(path) {
|
|
296
|
+
return corePath(`objects/${path || ""}`);
|
|
297
|
+
}
|
|
298
|
+
function onboardingPath(path) {
|
|
299
|
+
return projectPath(`${path || "views/dashboard/onboarding"}`);
|
|
300
|
+
}
|
|
301
|
+
function packageJsonPath(type) {
|
|
302
|
+
if (type === "web-components")
|
|
303
|
+
return frameworkPath("libs/components/web/package.json");
|
|
304
|
+
return frameworkPath(`libs/${type}/package.json`);
|
|
305
|
+
}
|
|
306
|
+
function viewsPath(path) {
|
|
307
|
+
return resourcesPath(`views/${path || ""}`);
|
|
308
|
+
}
|
|
309
|
+
function pathPath(path) {
|
|
310
|
+
return corePath(`path/${path || ""}`);
|
|
311
|
+
}
|
|
312
|
+
function paymentsPath(path) {
|
|
313
|
+
return corePath(`payments/${path || ""}`);
|
|
314
|
+
}
|
|
315
|
+
function projectPath(filePath = "", options) {
|
|
316
|
+
let path = process.cwd();
|
|
317
|
+
while (path.includes("storage")) {
|
|
318
|
+
const parent = resolve(path, "..");
|
|
319
|
+
if (parent === path)
|
|
320
|
+
break;
|
|
321
|
+
path = parent;
|
|
322
|
+
}
|
|
323
|
+
const finalPath = resolve(path, filePath);
|
|
324
|
+
if (options?.relative)
|
|
325
|
+
return relative(process.cwd(), finalPath);
|
|
326
|
+
return finalPath;
|
|
327
|
+
}
|
|
328
|
+
async function findProjectPath(project) {
|
|
329
|
+
const projectList = Bun.spawnSync(["buddy", "projects:list", "--quiet"]).stdout.toString();
|
|
330
|
+
await debugLog(`ProjectList in findProjectPath ${projectList}`);
|
|
331
|
+
const projects = projectList.split(`
|
|
332
|
+
`).filter((line) => line.startsWith(" - ")).map((line) => line.trim().substring(4));
|
|
333
|
+
await debugLog(`Projects in findProjectPath ${projects}`);
|
|
334
|
+
const projectPath2 = projects.find((proj) => proj.includes(project));
|
|
335
|
+
if (!projectPath2)
|
|
336
|
+
throw new Error(`Could not find project with name: ${project}`);
|
|
337
|
+
return projectPath2.startsWith("/") ? projectPath2 : `/${projectPath2}`;
|
|
338
|
+
}
|
|
339
|
+
function projectConfigPath(path) {
|
|
340
|
+
return projectPath(`config/${path || ""}`);
|
|
341
|
+
}
|
|
342
|
+
function storagePath(path) {
|
|
343
|
+
return projectPath(`storage/${path || ""}`);
|
|
344
|
+
}
|
|
345
|
+
function publicPath(path) {
|
|
346
|
+
return projectPath(`public/${path || ""}`);
|
|
347
|
+
}
|
|
348
|
+
function pushPath(path) {
|
|
349
|
+
return notificationsPath(`push/${path || ""}`);
|
|
350
|
+
}
|
|
351
|
+
function queryBuilderPath(path) {
|
|
352
|
+
return corePath(`query-builder/${path || ""}`);
|
|
353
|
+
}
|
|
354
|
+
function queuePath(path) {
|
|
355
|
+
return corePath(`queue/${path || ""}`);
|
|
356
|
+
}
|
|
357
|
+
function realtimePath(path) {
|
|
358
|
+
return corePath(`realtime/${path || ""}`);
|
|
359
|
+
}
|
|
360
|
+
function resourcesPath(path, options) {
|
|
361
|
+
if (options?.relative) {
|
|
362
|
+
const absolutePath = projectPath(`resources/${path || ""}`);
|
|
363
|
+
return relative(process.cwd(), absolutePath);
|
|
364
|
+
}
|
|
365
|
+
return projectPath(`resources/${path || ""}`);
|
|
366
|
+
}
|
|
367
|
+
function replPath(path) {
|
|
368
|
+
return corePath(`repl/${path || ""}`);
|
|
369
|
+
}
|
|
370
|
+
function routerPath(path) {
|
|
371
|
+
return corePath(`router/${path || ""}`);
|
|
372
|
+
}
|
|
373
|
+
function routesPath(path, options) {
|
|
374
|
+
const absolutePath = resourcesPath(`routes/${path || ""}`);
|
|
375
|
+
if (options?.relative)
|
|
376
|
+
return relative(process.cwd(), absolutePath);
|
|
377
|
+
return projectPath(`routes/${path || ""}`);
|
|
378
|
+
}
|
|
379
|
+
function searchEnginePath(path) {
|
|
380
|
+
return corePath(`search-engine/${path || ""}`);
|
|
381
|
+
}
|
|
382
|
+
function settingsPath(path) {
|
|
383
|
+
return projectPath(`${path || "views/dashboard/settings"}`);
|
|
384
|
+
}
|
|
385
|
+
function scriptsPath(path) {
|
|
386
|
+
return frameworkPath(`scripts/${path || ""}`);
|
|
387
|
+
}
|
|
388
|
+
function schedulerPath(path) {
|
|
389
|
+
return corePath(`scheduler/${path || ""}`);
|
|
390
|
+
}
|
|
391
|
+
function slugPath(path) {
|
|
392
|
+
return corePath(`slug/${path || ""}`);
|
|
393
|
+
}
|
|
394
|
+
function smsPath(path) {
|
|
395
|
+
return notificationsPath(`sms/${path || ""}`);
|
|
396
|
+
}
|
|
397
|
+
function coreStoragePath(path) {
|
|
398
|
+
return corePath(`storage/${path || ""}`);
|
|
399
|
+
}
|
|
400
|
+
function storesPath(path) {
|
|
401
|
+
return resourcesPath(`stores/${path || ""}`);
|
|
402
|
+
}
|
|
403
|
+
function securityPath(path) {
|
|
404
|
+
return corePath(`security/${path || ""}`);
|
|
405
|
+
}
|
|
406
|
+
function serverPath(path) {
|
|
407
|
+
return corePath(`server/${path || ""}`);
|
|
408
|
+
}
|
|
409
|
+
function userServerPath(path) {
|
|
410
|
+
return frameworkPath(`server/${path || ""}`);
|
|
411
|
+
}
|
|
412
|
+
function serverlessPath(path) {
|
|
413
|
+
return corePath(`serverless/${path || ""}`);
|
|
414
|
+
}
|
|
415
|
+
function stacksPath(path) {
|
|
416
|
+
return frameworkPath(`src/${path || ""}`);
|
|
417
|
+
}
|
|
418
|
+
function stacksLockPath() {
|
|
419
|
+
return storagePath("framework/stacks.lock.json");
|
|
420
|
+
}
|
|
421
|
+
function stacksBackupPath(stackName) {
|
|
422
|
+
return storagePath(`framework/stacks/backups/${stackName || ""}`);
|
|
423
|
+
}
|
|
424
|
+
function shellPath(path) {
|
|
425
|
+
return corePath(`shell/${path || ""}`);
|
|
426
|
+
}
|
|
427
|
+
function stringsPath(path) {
|
|
428
|
+
return corePath(`strings/${path || ""}`);
|
|
429
|
+
}
|
|
430
|
+
function testingPath(path) {
|
|
431
|
+
return corePath(`testing/${path || ""}`);
|
|
432
|
+
}
|
|
433
|
+
function tinkerPath(path) {
|
|
434
|
+
return corePath(`tinker/${path || ""}`);
|
|
435
|
+
}
|
|
436
|
+
function testsPath(path) {
|
|
437
|
+
return frameworkPath(`tests/${path || ""}`);
|
|
438
|
+
}
|
|
439
|
+
function typesPath(path) {
|
|
440
|
+
return corePath(`types/${path || ""}`);
|
|
441
|
+
}
|
|
442
|
+
function uiPath(path, options) {
|
|
443
|
+
const absolutePath = corePath(`ui/${path || ""}`);
|
|
444
|
+
if (options?.relative)
|
|
445
|
+
return relative(process.cwd(), absolutePath);
|
|
446
|
+
return absolutePath;
|
|
447
|
+
}
|
|
448
|
+
function utilsPath(path) {
|
|
449
|
+
return corePath(`utils/${path || ""}`);
|
|
450
|
+
}
|
|
451
|
+
function validationPath(path) {
|
|
452
|
+
return corePath(`validation/${path || ""}`);
|
|
453
|
+
}
|
|
454
|
+
function socialsPath(path) {
|
|
455
|
+
return corePath(`socials/${path || ""}`);
|
|
456
|
+
}
|
|
457
|
+
function xRayPath(path) {
|
|
458
|
+
return frameworkPath(`stacks/x-ray/${path || ""}`);
|
|
459
|
+
}
|
|
460
|
+
function homeDir(path) {
|
|
461
|
+
return os.homedir() + (path ? (path.startsWith("/") ? "" : "/") + path : "~");
|
|
462
|
+
}
|
|
463
|
+
var path = {
|
|
464
|
+
actionsPath,
|
|
465
|
+
userActionsPath,
|
|
466
|
+
builtUserActionsPath,
|
|
467
|
+
userComponentsPath,
|
|
468
|
+
userViewsPath,
|
|
469
|
+
userFunctionsPath,
|
|
470
|
+
aiPath,
|
|
471
|
+
assetsPath,
|
|
472
|
+
relativeActionsPath,
|
|
473
|
+
aliasPath,
|
|
474
|
+
analyticsPath,
|
|
475
|
+
arraysPath,
|
|
476
|
+
appPath,
|
|
477
|
+
defaultsAppPath,
|
|
478
|
+
defaultsResourcesPath,
|
|
479
|
+
authPath,
|
|
480
|
+
coreApiPath,
|
|
481
|
+
buddyPath,
|
|
482
|
+
buildEnginePath,
|
|
483
|
+
libsEntriesPath,
|
|
484
|
+
buildPath,
|
|
485
|
+
cachePath,
|
|
486
|
+
chartsPath,
|
|
487
|
+
chatPath,
|
|
488
|
+
cliPath,
|
|
489
|
+
cloudPath,
|
|
490
|
+
frameworkCloudPath,
|
|
491
|
+
collectionsPath,
|
|
492
|
+
commandsPath,
|
|
493
|
+
componentsPath,
|
|
494
|
+
configPath,
|
|
495
|
+
projectConfigPath,
|
|
496
|
+
corePath,
|
|
497
|
+
customElementsDataPath,
|
|
498
|
+
databasePath,
|
|
499
|
+
datetimePath,
|
|
500
|
+
developmentPath,
|
|
501
|
+
desktopPath,
|
|
502
|
+
docsPath,
|
|
503
|
+
dnsPath,
|
|
504
|
+
emailPath,
|
|
505
|
+
enumsPath,
|
|
506
|
+
eslintPluginPath,
|
|
507
|
+
errorHandlingPath,
|
|
508
|
+
eventsPath,
|
|
509
|
+
featureFlagsPath,
|
|
510
|
+
coreEnvPath,
|
|
511
|
+
healthPath,
|
|
512
|
+
examplesPath,
|
|
513
|
+
fakerPath,
|
|
514
|
+
frameworkPath,
|
|
515
|
+
browserPath,
|
|
516
|
+
storagePath,
|
|
517
|
+
functionsPath,
|
|
518
|
+
gitPath,
|
|
519
|
+
langPath,
|
|
520
|
+
layoutsPath,
|
|
521
|
+
libsPath,
|
|
522
|
+
userLibsPath,
|
|
523
|
+
libraryEntryPath,
|
|
524
|
+
lintPath,
|
|
525
|
+
listenersPath,
|
|
526
|
+
loggingPath,
|
|
527
|
+
logsPath,
|
|
528
|
+
jobsPath,
|
|
529
|
+
modulesPath,
|
|
530
|
+
ormPath,
|
|
531
|
+
objectsPath,
|
|
532
|
+
onboardingPath,
|
|
533
|
+
notificationsPath,
|
|
534
|
+
newsletterPath,
|
|
535
|
+
packageJsonPath,
|
|
536
|
+
viewsPath,
|
|
537
|
+
pathPath,
|
|
538
|
+
paymentsPath,
|
|
539
|
+
projectPath,
|
|
540
|
+
findProjectPath,
|
|
541
|
+
coreStoragePath,
|
|
542
|
+
publicPath,
|
|
543
|
+
pushPath,
|
|
544
|
+
queryBuilderPath,
|
|
545
|
+
queuePath,
|
|
546
|
+
realtimePath,
|
|
547
|
+
resourcesPath,
|
|
548
|
+
replPath,
|
|
549
|
+
routerPath,
|
|
550
|
+
routesPath,
|
|
551
|
+
runtimePath,
|
|
552
|
+
searchEnginePath,
|
|
553
|
+
schedulerPath,
|
|
554
|
+
settingsPath,
|
|
555
|
+
smsPath,
|
|
556
|
+
slugPath,
|
|
557
|
+
scriptsPath,
|
|
558
|
+
securityPath,
|
|
559
|
+
serverPath,
|
|
560
|
+
userServerPath,
|
|
561
|
+
serverlessPath,
|
|
562
|
+
stacksPath,
|
|
563
|
+
stacksLockPath,
|
|
564
|
+
stacksBackupPath,
|
|
565
|
+
stringsPath,
|
|
566
|
+
shellPath,
|
|
567
|
+
socialsPath,
|
|
568
|
+
storesPath,
|
|
569
|
+
testingPath,
|
|
570
|
+
testsPath,
|
|
571
|
+
tinkerPath,
|
|
572
|
+
typesPath,
|
|
573
|
+
uiPath,
|
|
574
|
+
userDatabasePath,
|
|
575
|
+
userMigrationsPath,
|
|
576
|
+
userEventsPath,
|
|
577
|
+
userJobsPath,
|
|
578
|
+
userControllersPath,
|
|
579
|
+
userListenersPath,
|
|
580
|
+
userMiddlewarePath,
|
|
581
|
+
userModelsPath,
|
|
582
|
+
userNotificationsPath,
|
|
583
|
+
userMailPath,
|
|
584
|
+
userEmailsPath,
|
|
585
|
+
utilsPath,
|
|
586
|
+
validationPath,
|
|
587
|
+
xRayPath,
|
|
588
|
+
homeDir,
|
|
589
|
+
basename,
|
|
590
|
+
delimiter: () => delimiter,
|
|
591
|
+
dirname,
|
|
592
|
+
extname,
|
|
593
|
+
isAbsolute,
|
|
594
|
+
join,
|
|
595
|
+
normalize,
|
|
596
|
+
relative,
|
|
597
|
+
resolve,
|
|
598
|
+
parse,
|
|
599
|
+
sep: () => sep,
|
|
600
|
+
toNamespacedPath
|
|
601
|
+
};
|
|
602
|
+
export {
|
|
603
|
+
xRayPath,
|
|
604
|
+
viewsPath,
|
|
605
|
+
validationPath,
|
|
606
|
+
utilsPath,
|
|
607
|
+
userViewsPath,
|
|
608
|
+
userServerPath,
|
|
609
|
+
userNotificationsPath,
|
|
610
|
+
userModelsPath,
|
|
611
|
+
userMigrationsPath,
|
|
612
|
+
userMiddlewarePath,
|
|
613
|
+
userMailPath,
|
|
614
|
+
userListenersPath,
|
|
615
|
+
userLibsPath,
|
|
616
|
+
userJobsPath,
|
|
617
|
+
userFunctionsPath,
|
|
618
|
+
userEventsPath,
|
|
619
|
+
userEmailsPath,
|
|
620
|
+
userDatabasePath,
|
|
621
|
+
userControllersPath,
|
|
622
|
+
userComponentsPath,
|
|
623
|
+
userActionsPath,
|
|
624
|
+
uiPath,
|
|
625
|
+
typesPath,
|
|
626
|
+
toNamespacedPath,
|
|
627
|
+
tinkerPath,
|
|
628
|
+
testsPath,
|
|
629
|
+
testingPath,
|
|
630
|
+
stringsPath,
|
|
631
|
+
storesPath,
|
|
632
|
+
storagePath,
|
|
633
|
+
stacksPath,
|
|
634
|
+
stacksLockPath,
|
|
635
|
+
stacksBackupPath,
|
|
636
|
+
socialsPath,
|
|
637
|
+
smsPath,
|
|
638
|
+
slugPath,
|
|
639
|
+
shellPath,
|
|
640
|
+
settingsPath,
|
|
641
|
+
serverlessPath,
|
|
642
|
+
serverPath,
|
|
643
|
+
sep,
|
|
644
|
+
securityPath,
|
|
645
|
+
searchEnginePath,
|
|
646
|
+
scriptsPath,
|
|
647
|
+
schedulerPath,
|
|
648
|
+
runtimePath,
|
|
649
|
+
routesPath,
|
|
650
|
+
routerPath,
|
|
651
|
+
resourcesPath,
|
|
652
|
+
resolveUserLibBase,
|
|
653
|
+
resolve,
|
|
654
|
+
replPath,
|
|
655
|
+
relativeActionsPath,
|
|
656
|
+
relative,
|
|
657
|
+
realtimePath,
|
|
658
|
+
queuePath,
|
|
659
|
+
queryBuilderPath,
|
|
660
|
+
pushPath,
|
|
661
|
+
publicPath,
|
|
662
|
+
projectPath,
|
|
663
|
+
projectConfigPath,
|
|
664
|
+
paymentsPath,
|
|
665
|
+
pathPath,
|
|
666
|
+
path,
|
|
667
|
+
packageJsonPath,
|
|
668
|
+
ormPath,
|
|
669
|
+
onboardingPath,
|
|
670
|
+
objectsPath,
|
|
671
|
+
notificationsPath,
|
|
672
|
+
normalize,
|
|
673
|
+
newsletterPath,
|
|
674
|
+
modulesPath,
|
|
675
|
+
modelsPath,
|
|
676
|
+
logsPath,
|
|
677
|
+
loggingPath,
|
|
678
|
+
listenersPath,
|
|
679
|
+
lintPath,
|
|
680
|
+
libsPath,
|
|
681
|
+
libsEntriesPath,
|
|
682
|
+
libraryEntryPath,
|
|
683
|
+
layoutsPath,
|
|
684
|
+
langPath,
|
|
685
|
+
join,
|
|
686
|
+
jobsPath,
|
|
687
|
+
isAbsolute,
|
|
688
|
+
homeDir,
|
|
689
|
+
healthPath,
|
|
690
|
+
gitPath,
|
|
691
|
+
functionsPath,
|
|
692
|
+
frameworkPath,
|
|
693
|
+
frameworkCloudPath,
|
|
694
|
+
findProjectPath,
|
|
695
|
+
featureFlagsPath,
|
|
696
|
+
fakerPath,
|
|
697
|
+
extname,
|
|
698
|
+
examplesPath,
|
|
699
|
+
eventsPath,
|
|
700
|
+
eslintPluginPath,
|
|
701
|
+
errorHandlingPath,
|
|
702
|
+
enumsPath,
|
|
703
|
+
emailPath,
|
|
704
|
+
docsPath,
|
|
705
|
+
dnsPath,
|
|
706
|
+
dirname,
|
|
707
|
+
developmentPath,
|
|
708
|
+
desktopPath,
|
|
709
|
+
delimiter,
|
|
710
|
+
defaultsResourcesPath,
|
|
711
|
+
defaultsAppPath,
|
|
712
|
+
datetimePath,
|
|
713
|
+
databasePath,
|
|
714
|
+
customElementsDataPath,
|
|
715
|
+
coreStoragePath,
|
|
716
|
+
corePath,
|
|
717
|
+
coreEnvPath,
|
|
718
|
+
coreApiPath,
|
|
719
|
+
configPath,
|
|
720
|
+
componentsPath,
|
|
721
|
+
commandsPath,
|
|
722
|
+
collectionsPath,
|
|
723
|
+
cloudPath,
|
|
724
|
+
cliPath,
|
|
725
|
+
chatPath,
|
|
726
|
+
chartsPath,
|
|
727
|
+
cachePath,
|
|
728
|
+
builtUserActionsPath,
|
|
729
|
+
buildPath,
|
|
730
|
+
buildEnginePath,
|
|
731
|
+
buddyPath,
|
|
732
|
+
browserPath,
|
|
733
|
+
basename,
|
|
734
|
+
authPath,
|
|
735
|
+
assetsPath,
|
|
736
|
+
arraysPath,
|
|
737
|
+
appPath,
|
|
738
|
+
analyticsPath,
|
|
739
|
+
aliasPath,
|
|
740
|
+
aiPath,
|
|
741
|
+
actionsPath
|
|
742
|
+
};
|