@stacksjs/path 0.51.0 → 0.52.1
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/README.md +1 -1
- package/dist/index.cjs +430 -0
- package/dist/index.d.ts +104 -84
- package/dist/index.mjs +114 -77
- package/package.json +13 -11
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ pnpm test
|
|
|
35
35
|
|
|
36
36
|
Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
|
|
37
37
|
|
|
38
|
-
##
|
|
38
|
+
## 🚜 Contributing
|
|
39
39
|
|
|
40
40
|
Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
|
|
41
41
|
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const pathe = require('pathe');
|
|
4
|
+
|
|
5
|
+
function aiPath(path2) {
|
|
6
|
+
return corePath(`ai/${path2 || ""}`);
|
|
7
|
+
}
|
|
8
|
+
function actionsPath(path2) {
|
|
9
|
+
return corePath(`actions/src/${path2 || ""}`);
|
|
10
|
+
}
|
|
11
|
+
function aliasPath() {
|
|
12
|
+
return corePath("alias/src/index.ts");
|
|
13
|
+
}
|
|
14
|
+
function runtimePath(path2) {
|
|
15
|
+
return frameworkPath(`buddy/${path2 || ""}`);
|
|
16
|
+
}
|
|
17
|
+
function arraysPath(path2) {
|
|
18
|
+
return corePath(`arrays/${path2 || ""}`);
|
|
19
|
+
}
|
|
20
|
+
function authPath(path2) {
|
|
21
|
+
return corePath(`auth/${path2 || ""}`);
|
|
22
|
+
}
|
|
23
|
+
function appPath(path2) {
|
|
24
|
+
return projectPath(`app/${path2 || ""}`);
|
|
25
|
+
}
|
|
26
|
+
function buildPath(path2) {
|
|
27
|
+
return corePath(`build/${path2 || ""}`);
|
|
28
|
+
}
|
|
29
|
+
function buildEnginePath(path2) {
|
|
30
|
+
return buildPath(`${path2 || ""}`);
|
|
31
|
+
}
|
|
32
|
+
function buildEntriesPath(path2) {
|
|
33
|
+
return buildPath(`entries/${path2 || ""}`);
|
|
34
|
+
}
|
|
35
|
+
function cachePath(path2) {
|
|
36
|
+
return corePath(`cache/${path2 || ""}`);
|
|
37
|
+
}
|
|
38
|
+
function chatPath(path2) {
|
|
39
|
+
return corePath(`chat/${path2 || ""}`);
|
|
40
|
+
}
|
|
41
|
+
function cliPath(path2) {
|
|
42
|
+
return corePath(`cli/${path2 || ""}`);
|
|
43
|
+
}
|
|
44
|
+
function cloudPath(path2) {
|
|
45
|
+
return corePath(`cloud/${path2 || ""}`);
|
|
46
|
+
}
|
|
47
|
+
function collectionsPath(path2) {
|
|
48
|
+
return corePath(`collections/${path2 || ""}`);
|
|
49
|
+
}
|
|
50
|
+
function componentsPath(path2) {
|
|
51
|
+
return projectPath(`components/${path2 || ""}`);
|
|
52
|
+
}
|
|
53
|
+
function configPath(path2) {
|
|
54
|
+
return corePath(`config/${path2 || ""}`);
|
|
55
|
+
}
|
|
56
|
+
function userConfigPath(path2) {
|
|
57
|
+
return projectPath(`config/${path2 || ""}`);
|
|
58
|
+
}
|
|
59
|
+
function corePath(path2) {
|
|
60
|
+
return frameworkPath(`core/${path2 || ""}`);
|
|
61
|
+
}
|
|
62
|
+
function dashboardPath(path2) {
|
|
63
|
+
return corePath(`dashboard/${path2 || ""}`);
|
|
64
|
+
}
|
|
65
|
+
function databasePath(path2) {
|
|
66
|
+
return corePath(`database/${path2 || ""}`);
|
|
67
|
+
}
|
|
68
|
+
function developmentPath(path2) {
|
|
69
|
+
return corePath(`development/${path2 || ""}`);
|
|
70
|
+
}
|
|
71
|
+
function desktopPath(path2) {
|
|
72
|
+
return corePath(`desktop/${path2 || ""}`);
|
|
73
|
+
}
|
|
74
|
+
function docsPath(path2) {
|
|
75
|
+
return corePath(`docs/${path2 || ""}`);
|
|
76
|
+
}
|
|
77
|
+
function domainsPath(path2) {
|
|
78
|
+
return corePath(`domains/${path2 || ""}`);
|
|
79
|
+
}
|
|
80
|
+
function customElementsDataPath() {
|
|
81
|
+
return frameworkPath("custom-elements.json");
|
|
82
|
+
}
|
|
83
|
+
function emailPath(path2) {
|
|
84
|
+
return corePath(`email/${path2 || ""}`);
|
|
85
|
+
}
|
|
86
|
+
function errorHandlingPath(path2) {
|
|
87
|
+
return corePath(`error-handling/${path2 || ""}`);
|
|
88
|
+
}
|
|
89
|
+
function eventsPath(path2) {
|
|
90
|
+
return corePath(`events/${path2 || ""}`);
|
|
91
|
+
}
|
|
92
|
+
function fakerPath(path2) {
|
|
93
|
+
return corePath(`faker/${path2 || ""}`);
|
|
94
|
+
}
|
|
95
|
+
function healthPath(path2) {
|
|
96
|
+
return corePath(`health/${path2 || ""}`);
|
|
97
|
+
}
|
|
98
|
+
function examplesPath(type) {
|
|
99
|
+
return frameworkPath(`examples/${type || ""}`);
|
|
100
|
+
}
|
|
101
|
+
function frameworkPath(path2) {
|
|
102
|
+
return projectPath(`.stacks/${path2 || ""}`);
|
|
103
|
+
}
|
|
104
|
+
function storagePath(path2) {
|
|
105
|
+
return corePath(`storage/${path2 || ""}`);
|
|
106
|
+
}
|
|
107
|
+
function functionsPath(path2) {
|
|
108
|
+
return projectPath(`functions/${path2 || ""}`);
|
|
109
|
+
}
|
|
110
|
+
function gitPath(path2) {
|
|
111
|
+
return corePath(`git/${path2 || ""}`);
|
|
112
|
+
}
|
|
113
|
+
function langPath(path2) {
|
|
114
|
+
return projectPath(`lang/${path2 || ""}`);
|
|
115
|
+
}
|
|
116
|
+
function libraryEntryPath(type) {
|
|
117
|
+
return buildEntriesPath(`${type}.ts`);
|
|
118
|
+
}
|
|
119
|
+
function lintPath(path2) {
|
|
120
|
+
return corePath(`lint/${path2 || ""}`);
|
|
121
|
+
}
|
|
122
|
+
function loggingPath(path2) {
|
|
123
|
+
return corePath(`logging/${path2 || ""}`);
|
|
124
|
+
}
|
|
125
|
+
function xRayPath(path2) {
|
|
126
|
+
return corePath(`x-ray/${path2 || ""}`);
|
|
127
|
+
}
|
|
128
|
+
function modelsPath(path2) {
|
|
129
|
+
return appPath(`models/${path2 || ""}`);
|
|
130
|
+
}
|
|
131
|
+
function modulesPath(path2) {
|
|
132
|
+
return corePath(`modules/${path2 || ""}`);
|
|
133
|
+
}
|
|
134
|
+
function notificationsPath(path2) {
|
|
135
|
+
return corePath(`notifications/${path2 || ""}`);
|
|
136
|
+
}
|
|
137
|
+
function ormPath(path2) {
|
|
138
|
+
return corePath(`orm/${path2 || ""}`);
|
|
139
|
+
}
|
|
140
|
+
function objectsPath(path2) {
|
|
141
|
+
return corePath(`objects/${path2 || ""}`);
|
|
142
|
+
}
|
|
143
|
+
function onboardingPath(path2) {
|
|
144
|
+
return projectPath(`${path2 || "pages/dashboard/onboarding"}`);
|
|
145
|
+
}
|
|
146
|
+
function packageJsonPath(type) {
|
|
147
|
+
if (type === "vue-components")
|
|
148
|
+
return frameworkPath("components/vue/package.json");
|
|
149
|
+
if (type === "web-components")
|
|
150
|
+
return frameworkPath("components/web/package.json");
|
|
151
|
+
if (type === "functions")
|
|
152
|
+
return frameworkPath("functions/package.json");
|
|
153
|
+
return frameworkPath(`${type}/package.json`);
|
|
154
|
+
}
|
|
155
|
+
function pagesPath(path2) {
|
|
156
|
+
return appPath(`pages/${path2 || ""}`);
|
|
157
|
+
}
|
|
158
|
+
function pathPath(path2) {
|
|
159
|
+
return corePath(`path/${path2 || ""}`);
|
|
160
|
+
}
|
|
161
|
+
function paymentsPath(path2) {
|
|
162
|
+
return corePath(`payments/${path2 || ""}`);
|
|
163
|
+
}
|
|
164
|
+
function projectPath(filePath = "") {
|
|
165
|
+
let path2 = process.cwd();
|
|
166
|
+
if (path2.includes(".stacks"))
|
|
167
|
+
path2 = pathe.resolve(path2, "..");
|
|
168
|
+
if (path2.includes(".stacks"))
|
|
169
|
+
path2 = pathe.resolve(path2, "..");
|
|
170
|
+
if (path2.includes(".stacks"))
|
|
171
|
+
path2 = pathe.resolve(path2, "..");
|
|
172
|
+
if (!path2.includes(".stacks"))
|
|
173
|
+
path2 = pathe.resolve(path2, ".");
|
|
174
|
+
return pathe.resolve(path2, filePath);
|
|
175
|
+
}
|
|
176
|
+
function pushPath(path2) {
|
|
177
|
+
return corePath(`push/${path2 || ""}`);
|
|
178
|
+
}
|
|
179
|
+
function queryBuilderPath(path2) {
|
|
180
|
+
return corePath(`query-builder/${path2 || ""}`);
|
|
181
|
+
}
|
|
182
|
+
function queuePath(path2) {
|
|
183
|
+
return corePath(`queue/${path2 || ""}`);
|
|
184
|
+
}
|
|
185
|
+
function realtimePath(path2) {
|
|
186
|
+
return corePath(`realtime/${path2 || ""}`);
|
|
187
|
+
}
|
|
188
|
+
function routerPath(path2) {
|
|
189
|
+
return corePath(`router/${path2 || ""}`);
|
|
190
|
+
}
|
|
191
|
+
function searchEnginePath(path2) {
|
|
192
|
+
return corePath(`search-engine/${path2 || ""}`);
|
|
193
|
+
}
|
|
194
|
+
function settingsPath(path2) {
|
|
195
|
+
return projectPath(`${path2 || "pages/dashboard/settings"}`);
|
|
196
|
+
}
|
|
197
|
+
function smsPath(path2) {
|
|
198
|
+
return corePath(`sms/${path2 || ""}`);
|
|
199
|
+
}
|
|
200
|
+
function schedulerPath(path2) {
|
|
201
|
+
return corePath(`scheduler/${path2 || ""}`);
|
|
202
|
+
}
|
|
203
|
+
function signalsPath(path2) {
|
|
204
|
+
return corePath(`signals/${path2 || ""}`);
|
|
205
|
+
}
|
|
206
|
+
function routesPath(path2) {
|
|
207
|
+
return projectPath(`routes/${path2 || ""}`);
|
|
208
|
+
}
|
|
209
|
+
function securityPath(path2) {
|
|
210
|
+
return corePath(`security/${path2 || ""}`);
|
|
211
|
+
}
|
|
212
|
+
function serverPath(path2) {
|
|
213
|
+
return corePath(`server/${path2 || ""}`);
|
|
214
|
+
}
|
|
215
|
+
function serverlessPath(path2) {
|
|
216
|
+
return corePath(`serverless/${path2 || ""}`);
|
|
217
|
+
}
|
|
218
|
+
function stacksPath(path2) {
|
|
219
|
+
return frameworkPath(`src/${path2 || ""}`);
|
|
220
|
+
}
|
|
221
|
+
function tablesPath(path2) {
|
|
222
|
+
return corePath(`tables/${path2 || ""}`);
|
|
223
|
+
}
|
|
224
|
+
function testingPath(path2) {
|
|
225
|
+
return corePath(`testing/${path2 || ""}`);
|
|
226
|
+
}
|
|
227
|
+
function testsPath(path2) {
|
|
228
|
+
return frameworkPath(`tests/${path2 || ""}`);
|
|
229
|
+
}
|
|
230
|
+
function typesPath(path2) {
|
|
231
|
+
return corePath(`types/${path2 || ""}`);
|
|
232
|
+
}
|
|
233
|
+
function stringsPath(path2) {
|
|
234
|
+
return corePath(`strings/${path2 || ""}`);
|
|
235
|
+
}
|
|
236
|
+
function scriptsPath(path2) {
|
|
237
|
+
return frameworkPath(`scripts/${path2 || ""}`);
|
|
238
|
+
}
|
|
239
|
+
function uiPath(path2) {
|
|
240
|
+
return corePath(`ui/${path2 || ""}`);
|
|
241
|
+
}
|
|
242
|
+
function utilsPath(path2) {
|
|
243
|
+
return corePath(`utils/${path2 || ""}`);
|
|
244
|
+
}
|
|
245
|
+
function validationPath(path2) {
|
|
246
|
+
return corePath(`validation/${path2 || ""}`);
|
|
247
|
+
}
|
|
248
|
+
const path = {
|
|
249
|
+
aiPath,
|
|
250
|
+
actionsPath,
|
|
251
|
+
aliasPath,
|
|
252
|
+
arraysPath,
|
|
253
|
+
appPath,
|
|
254
|
+
authPath,
|
|
255
|
+
buildEnginePath,
|
|
256
|
+
buildEntriesPath,
|
|
257
|
+
buildPath,
|
|
258
|
+
cachePath,
|
|
259
|
+
chatPath,
|
|
260
|
+
cliPath,
|
|
261
|
+
cloudPath,
|
|
262
|
+
collectionsPath,
|
|
263
|
+
componentsPath,
|
|
264
|
+
configPath,
|
|
265
|
+
userConfigPath,
|
|
266
|
+
corePath,
|
|
267
|
+
customElementsDataPath,
|
|
268
|
+
databasePath,
|
|
269
|
+
developmentPath,
|
|
270
|
+
dashboardPath,
|
|
271
|
+
desktopPath,
|
|
272
|
+
docsPath,
|
|
273
|
+
domainsPath,
|
|
274
|
+
emailPath,
|
|
275
|
+
errorHandlingPath,
|
|
276
|
+
eventsPath,
|
|
277
|
+
healthPath,
|
|
278
|
+
examplesPath,
|
|
279
|
+
fakerPath,
|
|
280
|
+
frameworkPath,
|
|
281
|
+
storagePath,
|
|
282
|
+
functionsPath,
|
|
283
|
+
gitPath,
|
|
284
|
+
langPath,
|
|
285
|
+
libraryEntryPath,
|
|
286
|
+
lintPath,
|
|
287
|
+
loggingPath,
|
|
288
|
+
modulesPath,
|
|
289
|
+
ormPath,
|
|
290
|
+
objectsPath,
|
|
291
|
+
onboardingPath,
|
|
292
|
+
notificationsPath,
|
|
293
|
+
packageJsonPath,
|
|
294
|
+
pagesPath,
|
|
295
|
+
pathPath,
|
|
296
|
+
paymentsPath,
|
|
297
|
+
projectPath,
|
|
298
|
+
pushPath,
|
|
299
|
+
queryBuilderPath,
|
|
300
|
+
queuePath,
|
|
301
|
+
realtimePath,
|
|
302
|
+
routerPath,
|
|
303
|
+
routesPath,
|
|
304
|
+
searchEnginePath,
|
|
305
|
+
schedulerPath,
|
|
306
|
+
settingsPath,
|
|
307
|
+
smsPath,
|
|
308
|
+
signalsPath,
|
|
309
|
+
scriptsPath,
|
|
310
|
+
securityPath,
|
|
311
|
+
serverPath,
|
|
312
|
+
serverlessPath,
|
|
313
|
+
stacksPath,
|
|
314
|
+
stringsPath,
|
|
315
|
+
tablesPath,
|
|
316
|
+
testingPath,
|
|
317
|
+
testsPath,
|
|
318
|
+
typesPath,
|
|
319
|
+
uiPath,
|
|
320
|
+
utilsPath,
|
|
321
|
+
validationPath,
|
|
322
|
+
xRayPath,
|
|
323
|
+
// path utils
|
|
324
|
+
basename: pathe.basename,
|
|
325
|
+
delimiter: pathe.delimiter,
|
|
326
|
+
dirname: pathe.dirname,
|
|
327
|
+
extname: pathe.extname,
|
|
328
|
+
format: pathe.format,
|
|
329
|
+
isAbsolute: pathe.isAbsolute,
|
|
330
|
+
join: pathe.join,
|
|
331
|
+
normalize: pathe.normalize,
|
|
332
|
+
normalizeString: pathe.normalizeString,
|
|
333
|
+
parse: pathe.parse,
|
|
334
|
+
relative: pathe.relative,
|
|
335
|
+
resolve: pathe.resolve,
|
|
336
|
+
sep: pathe.sep,
|
|
337
|
+
toNamespacedPath: pathe.toNamespacedPath
|
|
338
|
+
};
|
|
339
|
+
|
|
340
|
+
exports.basename = pathe.basename;
|
|
341
|
+
exports.delimiter = pathe.delimiter;
|
|
342
|
+
exports.dirname = pathe.dirname;
|
|
343
|
+
exports.extname = pathe.extname;
|
|
344
|
+
exports.format = pathe.format;
|
|
345
|
+
exports.isAbsolute = pathe.isAbsolute;
|
|
346
|
+
exports.join = pathe.join;
|
|
347
|
+
exports.normalize = pathe.normalize;
|
|
348
|
+
exports.normalizeString = pathe.normalizeString;
|
|
349
|
+
exports.parse = pathe.parse;
|
|
350
|
+
exports.relative = pathe.relative;
|
|
351
|
+
exports.resolve = pathe.resolve;
|
|
352
|
+
exports.sep = pathe.sep;
|
|
353
|
+
exports.toNamespacedPath = pathe.toNamespacedPath;
|
|
354
|
+
exports.actionsPath = actionsPath;
|
|
355
|
+
exports.aiPath = aiPath;
|
|
356
|
+
exports.aliasPath = aliasPath;
|
|
357
|
+
exports.appPath = appPath;
|
|
358
|
+
exports.arraysPath = arraysPath;
|
|
359
|
+
exports.authPath = authPath;
|
|
360
|
+
exports.buildEnginePath = buildEnginePath;
|
|
361
|
+
exports.buildEntriesPath = buildEntriesPath;
|
|
362
|
+
exports.buildPath = buildPath;
|
|
363
|
+
exports.cachePath = cachePath;
|
|
364
|
+
exports.chatPath = chatPath;
|
|
365
|
+
exports.cliPath = cliPath;
|
|
366
|
+
exports.cloudPath = cloudPath;
|
|
367
|
+
exports.collectionsPath = collectionsPath;
|
|
368
|
+
exports.componentsPath = componentsPath;
|
|
369
|
+
exports.configPath = configPath;
|
|
370
|
+
exports.corePath = corePath;
|
|
371
|
+
exports.customElementsDataPath = customElementsDataPath;
|
|
372
|
+
exports.dashboardPath = dashboardPath;
|
|
373
|
+
exports.databasePath = databasePath;
|
|
374
|
+
exports.desktopPath = desktopPath;
|
|
375
|
+
exports.developmentPath = developmentPath;
|
|
376
|
+
exports.docsPath = docsPath;
|
|
377
|
+
exports.domainsPath = domainsPath;
|
|
378
|
+
exports.emailPath = emailPath;
|
|
379
|
+
exports.errorHandlingPath = errorHandlingPath;
|
|
380
|
+
exports.eventsPath = eventsPath;
|
|
381
|
+
exports.examplesPath = examplesPath;
|
|
382
|
+
exports.fakerPath = fakerPath;
|
|
383
|
+
exports.frameworkPath = frameworkPath;
|
|
384
|
+
exports.functionsPath = functionsPath;
|
|
385
|
+
exports.gitPath = gitPath;
|
|
386
|
+
exports.healthPath = healthPath;
|
|
387
|
+
exports.langPath = langPath;
|
|
388
|
+
exports.libraryEntryPath = libraryEntryPath;
|
|
389
|
+
exports.lintPath = lintPath;
|
|
390
|
+
exports.loggingPath = loggingPath;
|
|
391
|
+
exports.modelsPath = modelsPath;
|
|
392
|
+
exports.modulesPath = modulesPath;
|
|
393
|
+
exports.notificationsPath = notificationsPath;
|
|
394
|
+
exports.objectsPath = objectsPath;
|
|
395
|
+
exports.onboardingPath = onboardingPath;
|
|
396
|
+
exports.ormPath = ormPath;
|
|
397
|
+
exports.packageJsonPath = packageJsonPath;
|
|
398
|
+
exports.pagesPath = pagesPath;
|
|
399
|
+
exports.path = path;
|
|
400
|
+
exports.pathPath = pathPath;
|
|
401
|
+
exports.paymentsPath = paymentsPath;
|
|
402
|
+
exports.projectPath = projectPath;
|
|
403
|
+
exports.pushPath = pushPath;
|
|
404
|
+
exports.queryBuilderPath = queryBuilderPath;
|
|
405
|
+
exports.queuePath = queuePath;
|
|
406
|
+
exports.realtimePath = realtimePath;
|
|
407
|
+
exports.routerPath = routerPath;
|
|
408
|
+
exports.routesPath = routesPath;
|
|
409
|
+
exports.runtimePath = runtimePath;
|
|
410
|
+
exports.schedulerPath = schedulerPath;
|
|
411
|
+
exports.scriptsPath = scriptsPath;
|
|
412
|
+
exports.searchEnginePath = searchEnginePath;
|
|
413
|
+
exports.securityPath = securityPath;
|
|
414
|
+
exports.serverPath = serverPath;
|
|
415
|
+
exports.serverlessPath = serverlessPath;
|
|
416
|
+
exports.settingsPath = settingsPath;
|
|
417
|
+
exports.signalsPath = signalsPath;
|
|
418
|
+
exports.smsPath = smsPath;
|
|
419
|
+
exports.stacksPath = stacksPath;
|
|
420
|
+
exports.storagePath = storagePath;
|
|
421
|
+
exports.stringsPath = stringsPath;
|
|
422
|
+
exports.tablesPath = tablesPath;
|
|
423
|
+
exports.testingPath = testingPath;
|
|
424
|
+
exports.testsPath = testsPath;
|
|
425
|
+
exports.typesPath = typesPath;
|
|
426
|
+
exports.uiPath = uiPath;
|
|
427
|
+
exports.userConfigPath = userConfigPath;
|
|
428
|
+
exports.utilsPath = utilsPath;
|
|
429
|
+
exports.validationPath = validationPath;
|
|
430
|
+
exports.xRayPath = xRayPath;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _path from 'path';
|
|
2
|
+
import { normalizeString } from 'pathe';
|
|
3
|
+
export { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath } from 'pathe';
|
|
4
|
+
|
|
2
5
|
/**
|
|
3
6
|
* Returns the path to the `ai` directory. The AI directory
|
|
4
7
|
* contains the core Stacks' AI logic which currently
|
|
@@ -15,7 +18,7 @@ import { basename, delimiter, dirname, extname, format, isAbsolute, join, normal
|
|
|
15
18
|
* // path is /Users/chrisbreuer/Code/stacks/.stacks/core/ai
|
|
16
19
|
* ```
|
|
17
20
|
*/
|
|
18
|
-
|
|
21
|
+
declare function aiPath(path?: string): string;
|
|
19
22
|
/**
|
|
20
23
|
* Returns the path to the `actions` directory. The actions directory
|
|
21
24
|
* contains the core Stacks' actions. An action
|
|
@@ -30,11 +33,12 @@ export declare function aiPath(path?: string): any;
|
|
|
30
33
|
* buildPath('any-path.ts')
|
|
31
34
|
* ```
|
|
32
35
|
*/
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
declare function actionsPath(path?: string): string;
|
|
37
|
+
declare function aliasPath(): string;
|
|
38
|
+
declare function runtimePath(path?: string): string;
|
|
39
|
+
declare function arraysPath(path?: string): string;
|
|
40
|
+
declare function authPath(path?: string): string;
|
|
41
|
+
declare function appPath(path?: string): string;
|
|
38
42
|
/**
|
|
39
43
|
* Returns the path to the build directory. The build directory
|
|
40
44
|
* contains Stacks' build engine & its tooling integrations.
|
|
@@ -47,72 +51,81 @@ export declare function authPath(path?: string): any;
|
|
|
47
51
|
* buildPath('vue-components.ts')
|
|
48
52
|
* ```
|
|
49
53
|
*/
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
54
|
+
declare function buildPath(path?: string): string;
|
|
55
|
+
declare function buildEnginePath(path?: string): string;
|
|
56
|
+
declare function buildEntriesPath(path?: string): string;
|
|
57
|
+
declare function cachePath(path?: string): string;
|
|
58
|
+
declare function chatPath(path?: string): string;
|
|
59
|
+
declare function cliPath(path?: string): string;
|
|
60
|
+
declare function cloudPath(path?: string): string;
|
|
61
|
+
declare function collectionsPath(path?: string): string;
|
|
62
|
+
declare function componentsPath(path?: string): string;
|
|
63
|
+
declare function configPath(path?: string): string;
|
|
64
|
+
declare function userConfigPath(path?: string): string;
|
|
65
|
+
declare function corePath(path?: string): string;
|
|
66
|
+
declare function dashboardPath(path?: string): string;
|
|
67
|
+
declare function databasePath(path?: string): string;
|
|
68
|
+
declare function developmentPath(path?: string): string;
|
|
69
|
+
declare function desktopPath(path?: string): string;
|
|
70
|
+
declare function docsPath(path?: string): string;
|
|
71
|
+
declare function domainsPath(path?: string): string;
|
|
72
|
+
declare function customElementsDataPath(): string;
|
|
73
|
+
declare function emailPath(path?: string): string;
|
|
74
|
+
declare function errorHandlingPath(path?: string): string;
|
|
75
|
+
declare function eventsPath(path?: string): string;
|
|
76
|
+
declare function fakerPath(path?: string): string;
|
|
77
|
+
declare function healthPath(path?: string): string;
|
|
78
|
+
declare function examplesPath(type: 'vue-components' | 'web-components'): string;
|
|
79
|
+
declare function frameworkPath(path?: string): string;
|
|
80
|
+
declare function storagePath(path?: string): string;
|
|
81
|
+
declare function functionsPath(path?: string): string;
|
|
82
|
+
declare function gitPath(path?: string): string;
|
|
83
|
+
declare function langPath(path?: string): string;
|
|
84
|
+
declare function libraryEntryPath(type: 'vue-components' | 'web-components' | 'functions'): string;
|
|
85
|
+
declare function lintPath(path?: string): string;
|
|
86
|
+
declare function loggingPath(path?: string): string;
|
|
87
|
+
declare function xRayPath(path?: string): string;
|
|
88
|
+
declare function modelsPath(path?: string): string;
|
|
89
|
+
declare function modulesPath(path?: string): string;
|
|
90
|
+
declare function notificationsPath(path?: string): string;
|
|
91
|
+
declare function ormPath(path?: string): string;
|
|
92
|
+
declare function objectsPath(path?: string): string;
|
|
93
|
+
declare function onboardingPath(path?: string): string;
|
|
94
|
+
declare function packageJsonPath(type: 'vue-components' | 'web-components' | 'functions'): string;
|
|
95
|
+
declare function pagesPath(path?: string): string;
|
|
96
|
+
declare function pathPath(path?: string): string;
|
|
97
|
+
declare function paymentsPath(path?: string): string;
|
|
98
|
+
declare function projectPath(filePath?: string): string;
|
|
99
|
+
declare function pushPath(path?: string): string;
|
|
100
|
+
declare function queryBuilderPath(path?: string): string;
|
|
101
|
+
declare function queuePath(path?: string): string;
|
|
102
|
+
declare function realtimePath(path?: string): string;
|
|
103
|
+
declare function routerPath(path?: string): string;
|
|
104
|
+
declare function searchEnginePath(path?: string): string;
|
|
105
|
+
declare function settingsPath(path?: string): string;
|
|
106
|
+
declare function smsPath(path?: string): string;
|
|
107
|
+
declare function schedulerPath(path?: string): string;
|
|
108
|
+
declare function signalsPath(path?: string): string;
|
|
109
|
+
declare function routesPath(path?: string): string;
|
|
110
|
+
declare function securityPath(path?: string): string;
|
|
111
|
+
declare function serverPath(path?: string): string;
|
|
112
|
+
declare function serverlessPath(path?: string): string;
|
|
113
|
+
declare function stacksPath(path?: string): string;
|
|
114
|
+
declare function tablesPath(path?: string): string;
|
|
115
|
+
declare function testingPath(path?: string): string;
|
|
116
|
+
declare function testsPath(path?: string): string;
|
|
117
|
+
declare function typesPath(path?: string): string;
|
|
118
|
+
declare function stringsPath(path?: string): string;
|
|
119
|
+
declare function scriptsPath(path?: string): string;
|
|
120
|
+
declare function uiPath(path?: string): string;
|
|
121
|
+
declare function utilsPath(path?: string): string;
|
|
122
|
+
declare function validationPath(path?: string): string;
|
|
123
|
+
declare const path: {
|
|
112
124
|
aiPath: typeof aiPath;
|
|
113
125
|
actionsPath: typeof actionsPath;
|
|
114
126
|
aliasPath: typeof aliasPath;
|
|
115
127
|
arraysPath: typeof arraysPath;
|
|
128
|
+
appPath: typeof appPath;
|
|
116
129
|
authPath: typeof authPath;
|
|
117
130
|
buildEnginePath: typeof buildEnginePath;
|
|
118
131
|
buildEntriesPath: typeof buildEntriesPath;
|
|
@@ -120,22 +133,25 @@ export declare const path: {
|
|
|
120
133
|
cachePath: typeof cachePath;
|
|
121
134
|
chatPath: typeof chatPath;
|
|
122
135
|
cliPath: typeof cliPath;
|
|
136
|
+
cloudPath: typeof cloudPath;
|
|
123
137
|
collectionsPath: typeof collectionsPath;
|
|
124
138
|
componentsPath: typeof componentsPath;
|
|
125
139
|
configPath: typeof configPath;
|
|
140
|
+
userConfigPath: typeof userConfigPath;
|
|
126
141
|
corePath: typeof corePath;
|
|
127
142
|
customElementsDataPath: typeof customElementsDataPath;
|
|
128
143
|
databasePath: typeof databasePath;
|
|
144
|
+
developmentPath: typeof developmentPath;
|
|
129
145
|
dashboardPath: typeof dashboardPath;
|
|
130
146
|
desktopPath: typeof desktopPath;
|
|
131
147
|
docsPath: typeof docsPath;
|
|
132
148
|
domainsPath: typeof domainsPath;
|
|
133
|
-
driversPath: typeof driversPath;
|
|
134
149
|
emailPath: typeof emailPath;
|
|
135
150
|
errorHandlingPath: typeof errorHandlingPath;
|
|
136
151
|
eventsPath: typeof eventsPath;
|
|
137
152
|
healthPath: typeof healthPath;
|
|
138
153
|
examplesPath: typeof examplesPath;
|
|
154
|
+
fakerPath: typeof fakerPath;
|
|
139
155
|
frameworkPath: typeof frameworkPath;
|
|
140
156
|
storagePath: typeof storagePath;
|
|
141
157
|
functionsPath: typeof functionsPath;
|
|
@@ -144,8 +160,8 @@ export declare const path: {
|
|
|
144
160
|
libraryEntryPath: typeof libraryEntryPath;
|
|
145
161
|
lintPath: typeof lintPath;
|
|
146
162
|
loggingPath: typeof loggingPath;
|
|
147
|
-
xRayPath: typeof xRayPath;
|
|
148
163
|
modulesPath: typeof modulesPath;
|
|
164
|
+
ormPath: typeof ormPath;
|
|
149
165
|
objectsPath: typeof objectsPath;
|
|
150
166
|
onboardingPath: typeof onboardingPath;
|
|
151
167
|
notificationsPath: typeof notificationsPath;
|
|
@@ -155,13 +171,16 @@ export declare const path: {
|
|
|
155
171
|
paymentsPath: typeof paymentsPath;
|
|
156
172
|
projectPath: typeof projectPath;
|
|
157
173
|
pushPath: typeof pushPath;
|
|
174
|
+
queryBuilderPath: typeof queryBuilderPath;
|
|
158
175
|
queuePath: typeof queuePath;
|
|
159
176
|
realtimePath: typeof realtimePath;
|
|
160
177
|
routerPath: typeof routerPath;
|
|
161
178
|
routesPath: typeof routesPath;
|
|
162
179
|
searchEnginePath: typeof searchEnginePath;
|
|
180
|
+
schedulerPath: typeof schedulerPath;
|
|
163
181
|
settingsPath: typeof settingsPath;
|
|
164
182
|
smsPath: typeof smsPath;
|
|
183
|
+
signalsPath: typeof signalsPath;
|
|
165
184
|
scriptsPath: typeof scriptsPath;
|
|
166
185
|
securityPath: typeof securityPath;
|
|
167
186
|
serverPath: typeof serverPath;
|
|
@@ -175,20 +194,21 @@ export declare const path: {
|
|
|
175
194
|
uiPath: typeof uiPath;
|
|
176
195
|
utilsPath: typeof utilsPath;
|
|
177
196
|
validationPath: typeof validationPath;
|
|
178
|
-
|
|
197
|
+
xRayPath: typeof xRayPath;
|
|
198
|
+
basename: (path: string, suffix?: string | undefined) => string;
|
|
179
199
|
delimiter: string;
|
|
180
|
-
dirname:
|
|
181
|
-
extname:
|
|
182
|
-
format:
|
|
183
|
-
isAbsolute:
|
|
184
|
-
join:
|
|
185
|
-
normalize:
|
|
200
|
+
dirname: (path: string) => string;
|
|
201
|
+
extname: (path: string) => string;
|
|
202
|
+
format: (pathObject: _path.FormatInputPathObject) => string;
|
|
203
|
+
isAbsolute: (path: string) => boolean;
|
|
204
|
+
join: (...paths: string[]) => string;
|
|
205
|
+
normalize: (path: string) => string;
|
|
186
206
|
normalizeString: typeof normalizeString;
|
|
187
|
-
parse:
|
|
188
|
-
relative:
|
|
189
|
-
resolve:
|
|
207
|
+
parse: (path: string) => _path.ParsedPath;
|
|
208
|
+
relative: (from: string, to: string) => string;
|
|
209
|
+
resolve: (...paths: string[]) => string;
|
|
190
210
|
sep: string;
|
|
191
|
-
toNamespacedPath:
|
|
211
|
+
toNamespacedPath: (path: string) => string;
|
|
192
212
|
};
|
|
193
|
-
|
|
194
|
-
export
|
|
213
|
+
|
|
214
|
+
export { actionsPath, aiPath, aliasPath, appPath, arraysPath, authPath, buildEnginePath, buildEntriesPath, buildPath, cachePath, chatPath, cliPath, cloudPath, collectionsPath, componentsPath, configPath, corePath, customElementsDataPath, dashboardPath, databasePath, desktopPath, developmentPath, docsPath, domainsPath, emailPath, errorHandlingPath, eventsPath, examplesPath, fakerPath, frameworkPath, functionsPath, gitPath, healthPath, langPath, libraryEntryPath, lintPath, loggingPath, modelsPath, modulesPath, notificationsPath, objectsPath, onboardingPath, ormPath, packageJsonPath, pagesPath, path, pathPath, paymentsPath, projectPath, pushPath, queryBuilderPath, queuePath, realtimePath, routerPath, routesPath, runtimePath, schedulerPath, scriptsPath, searchEnginePath, securityPath, serverPath, serverlessPath, settingsPath, signalsPath, smsPath, stacksPath, storagePath, stringsPath, tablesPath, testingPath, testsPath, typesPath, uiPath, userConfigPath, utilsPath, validationPath, xRayPath };
|
package/dist/index.mjs
CHANGED
|
@@ -1,128 +1,148 @@
|
|
|
1
|
-
import { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative,
|
|
2
|
-
export
|
|
1
|
+
import { resolve, basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, sep, toNamespacedPath } from 'pathe';
|
|
2
|
+
export { basename, delimiter, dirname, extname, format, isAbsolute, join, normalize, normalizeString, parse, relative, resolve, sep, toNamespacedPath } from 'pathe';
|
|
3
|
+
|
|
4
|
+
function aiPath(path2) {
|
|
3
5
|
return corePath(`ai/${path2 || ""}`);
|
|
4
6
|
}
|
|
5
|
-
|
|
7
|
+
function actionsPath(path2) {
|
|
6
8
|
return corePath(`actions/src/${path2 || ""}`);
|
|
7
9
|
}
|
|
8
|
-
|
|
10
|
+
function aliasPath() {
|
|
9
11
|
return corePath("alias/src/index.ts");
|
|
10
12
|
}
|
|
11
|
-
|
|
13
|
+
function runtimePath(path2) {
|
|
12
14
|
return frameworkPath(`buddy/${path2 || ""}`);
|
|
13
15
|
}
|
|
14
|
-
|
|
16
|
+
function arraysPath(path2) {
|
|
15
17
|
return corePath(`arrays/${path2 || ""}`);
|
|
16
18
|
}
|
|
17
|
-
|
|
19
|
+
function authPath(path2) {
|
|
18
20
|
return corePath(`auth/${path2 || ""}`);
|
|
19
21
|
}
|
|
20
|
-
|
|
22
|
+
function appPath(path2) {
|
|
23
|
+
return projectPath(`app/${path2 || ""}`);
|
|
24
|
+
}
|
|
25
|
+
function buildPath(path2) {
|
|
21
26
|
return corePath(`build/${path2 || ""}`);
|
|
22
27
|
}
|
|
23
|
-
|
|
28
|
+
function buildEnginePath(path2) {
|
|
24
29
|
return buildPath(`${path2 || ""}`);
|
|
25
30
|
}
|
|
26
|
-
|
|
31
|
+
function buildEntriesPath(path2) {
|
|
27
32
|
return buildPath(`entries/${path2 || ""}`);
|
|
28
33
|
}
|
|
29
|
-
|
|
34
|
+
function cachePath(path2) {
|
|
30
35
|
return corePath(`cache/${path2 || ""}`);
|
|
31
36
|
}
|
|
32
|
-
|
|
37
|
+
function chatPath(path2) {
|
|
33
38
|
return corePath(`chat/${path2 || ""}`);
|
|
34
39
|
}
|
|
35
|
-
|
|
40
|
+
function cliPath(path2) {
|
|
36
41
|
return corePath(`cli/${path2 || ""}`);
|
|
37
42
|
}
|
|
38
|
-
|
|
43
|
+
function cloudPath(path2) {
|
|
44
|
+
return corePath(`cloud/${path2 || ""}`);
|
|
45
|
+
}
|
|
46
|
+
function collectionsPath(path2) {
|
|
39
47
|
return corePath(`collections/${path2 || ""}`);
|
|
40
48
|
}
|
|
41
|
-
|
|
49
|
+
function componentsPath(path2) {
|
|
42
50
|
return projectPath(`components/${path2 || ""}`);
|
|
43
51
|
}
|
|
44
|
-
|
|
52
|
+
function configPath(path2) {
|
|
45
53
|
return corePath(`config/${path2 || ""}`);
|
|
46
54
|
}
|
|
47
|
-
|
|
55
|
+
function userConfigPath(path2) {
|
|
56
|
+
return projectPath(`config/${path2 || ""}`);
|
|
57
|
+
}
|
|
58
|
+
function corePath(path2) {
|
|
48
59
|
return frameworkPath(`core/${path2 || ""}`);
|
|
49
60
|
}
|
|
50
|
-
|
|
61
|
+
function dashboardPath(path2) {
|
|
62
|
+
return corePath(`dashboard/${path2 || ""}`);
|
|
63
|
+
}
|
|
64
|
+
function databasePath(path2) {
|
|
51
65
|
return corePath(`database/${path2 || ""}`);
|
|
52
66
|
}
|
|
53
|
-
|
|
54
|
-
return corePath(`
|
|
67
|
+
function developmentPath(path2) {
|
|
68
|
+
return corePath(`development/${path2 || ""}`);
|
|
55
69
|
}
|
|
56
|
-
|
|
70
|
+
function desktopPath(path2) {
|
|
57
71
|
return corePath(`desktop/${path2 || ""}`);
|
|
58
72
|
}
|
|
59
|
-
|
|
73
|
+
function docsPath(path2) {
|
|
60
74
|
return corePath(`docs/${path2 || ""}`);
|
|
61
75
|
}
|
|
62
|
-
|
|
76
|
+
function domainsPath(path2) {
|
|
63
77
|
return corePath(`domains/${path2 || ""}`);
|
|
64
78
|
}
|
|
65
|
-
|
|
66
|
-
return corePath(`drivers/${path2 || ""}`);
|
|
67
|
-
}
|
|
68
|
-
export function customElementsDataPath() {
|
|
79
|
+
function customElementsDataPath() {
|
|
69
80
|
return frameworkPath("custom-elements.json");
|
|
70
81
|
}
|
|
71
|
-
|
|
82
|
+
function emailPath(path2) {
|
|
72
83
|
return corePath(`email/${path2 || ""}`);
|
|
73
84
|
}
|
|
74
|
-
|
|
85
|
+
function errorHandlingPath(path2) {
|
|
75
86
|
return corePath(`error-handling/${path2 || ""}`);
|
|
76
87
|
}
|
|
77
|
-
|
|
88
|
+
function eventsPath(path2) {
|
|
78
89
|
return corePath(`events/${path2 || ""}`);
|
|
79
90
|
}
|
|
80
|
-
|
|
91
|
+
function fakerPath(path2) {
|
|
92
|
+
return corePath(`faker/${path2 || ""}`);
|
|
93
|
+
}
|
|
94
|
+
function healthPath(path2) {
|
|
81
95
|
return corePath(`health/${path2 || ""}`);
|
|
82
96
|
}
|
|
83
|
-
|
|
97
|
+
function examplesPath(type) {
|
|
84
98
|
return frameworkPath(`examples/${type || ""}`);
|
|
85
99
|
}
|
|
86
|
-
|
|
100
|
+
function frameworkPath(path2) {
|
|
87
101
|
return projectPath(`.stacks/${path2 || ""}`);
|
|
88
102
|
}
|
|
89
|
-
|
|
103
|
+
function storagePath(path2) {
|
|
90
104
|
return corePath(`storage/${path2 || ""}`);
|
|
91
105
|
}
|
|
92
|
-
|
|
106
|
+
function functionsPath(path2) {
|
|
93
107
|
return projectPath(`functions/${path2 || ""}`);
|
|
94
108
|
}
|
|
95
|
-
|
|
109
|
+
function gitPath(path2) {
|
|
96
110
|
return corePath(`git/${path2 || ""}`);
|
|
97
111
|
}
|
|
98
|
-
|
|
112
|
+
function langPath(path2) {
|
|
99
113
|
return projectPath(`lang/${path2 || ""}`);
|
|
100
114
|
}
|
|
101
|
-
|
|
115
|
+
function libraryEntryPath(type) {
|
|
102
116
|
return buildEntriesPath(`${type}.ts`);
|
|
103
117
|
}
|
|
104
|
-
|
|
118
|
+
function lintPath(path2) {
|
|
105
119
|
return corePath(`lint/${path2 || ""}`);
|
|
106
120
|
}
|
|
107
|
-
|
|
121
|
+
function loggingPath(path2) {
|
|
108
122
|
return corePath(`logging/${path2 || ""}`);
|
|
109
123
|
}
|
|
110
|
-
|
|
124
|
+
function xRayPath(path2) {
|
|
111
125
|
return corePath(`x-ray/${path2 || ""}`);
|
|
112
126
|
}
|
|
113
|
-
|
|
127
|
+
function modelsPath(path2) {
|
|
128
|
+
return appPath(`models/${path2 || ""}`);
|
|
129
|
+
}
|
|
130
|
+
function modulesPath(path2) {
|
|
114
131
|
return corePath(`modules/${path2 || ""}`);
|
|
115
132
|
}
|
|
116
|
-
|
|
133
|
+
function notificationsPath(path2) {
|
|
117
134
|
return corePath(`notifications/${path2 || ""}`);
|
|
118
135
|
}
|
|
119
|
-
|
|
136
|
+
function ormPath(path2) {
|
|
137
|
+
return corePath(`orm/${path2 || ""}`);
|
|
138
|
+
}
|
|
139
|
+
function objectsPath(path2) {
|
|
120
140
|
return corePath(`objects/${path2 || ""}`);
|
|
121
141
|
}
|
|
122
|
-
|
|
142
|
+
function onboardingPath(path2) {
|
|
123
143
|
return projectPath(`${path2 || "pages/dashboard/onboarding"}`);
|
|
124
144
|
}
|
|
125
|
-
|
|
145
|
+
function packageJsonPath(type) {
|
|
126
146
|
if (type === "vue-components")
|
|
127
147
|
return frameworkPath("components/vue/package.json");
|
|
128
148
|
if (type === "web-components")
|
|
@@ -131,16 +151,16 @@ export function packageJsonPath(type) {
|
|
|
131
151
|
return frameworkPath("functions/package.json");
|
|
132
152
|
return frameworkPath(`${type}/package.json`);
|
|
133
153
|
}
|
|
134
|
-
|
|
135
|
-
return
|
|
154
|
+
function pagesPath(path2) {
|
|
155
|
+
return appPath(`pages/${path2 || ""}`);
|
|
136
156
|
}
|
|
137
|
-
|
|
157
|
+
function pathPath(path2) {
|
|
138
158
|
return corePath(`path/${path2 || ""}`);
|
|
139
159
|
}
|
|
140
|
-
|
|
160
|
+
function paymentsPath(path2) {
|
|
141
161
|
return corePath(`payments/${path2 || ""}`);
|
|
142
162
|
}
|
|
143
|
-
|
|
163
|
+
function projectPath(filePath = "") {
|
|
144
164
|
let path2 = process.cwd();
|
|
145
165
|
if (path2.includes(".stacks"))
|
|
146
166
|
path2 = resolve(path2, "..");
|
|
@@ -152,74 +172,84 @@ export function projectPath(filePath = "") {
|
|
|
152
172
|
path2 = resolve(path2, ".");
|
|
153
173
|
return resolve(path2, filePath);
|
|
154
174
|
}
|
|
155
|
-
|
|
175
|
+
function pushPath(path2) {
|
|
156
176
|
return corePath(`push/${path2 || ""}`);
|
|
157
177
|
}
|
|
158
|
-
|
|
178
|
+
function queryBuilderPath(path2) {
|
|
179
|
+
return corePath(`query-builder/${path2 || ""}`);
|
|
180
|
+
}
|
|
181
|
+
function queuePath(path2) {
|
|
159
182
|
return corePath(`queue/${path2 || ""}`);
|
|
160
183
|
}
|
|
161
|
-
|
|
184
|
+
function realtimePath(path2) {
|
|
162
185
|
return corePath(`realtime/${path2 || ""}`);
|
|
163
186
|
}
|
|
164
|
-
|
|
187
|
+
function routerPath(path2) {
|
|
165
188
|
return corePath(`router/${path2 || ""}`);
|
|
166
189
|
}
|
|
167
|
-
|
|
190
|
+
function searchEnginePath(path2) {
|
|
168
191
|
return corePath(`search-engine/${path2 || ""}`);
|
|
169
192
|
}
|
|
170
|
-
|
|
193
|
+
function settingsPath(path2) {
|
|
171
194
|
return projectPath(`${path2 || "pages/dashboard/settings"}`);
|
|
172
195
|
}
|
|
173
|
-
|
|
196
|
+
function smsPath(path2) {
|
|
174
197
|
return corePath(`sms/${path2 || ""}`);
|
|
175
198
|
}
|
|
176
|
-
|
|
199
|
+
function schedulerPath(path2) {
|
|
200
|
+
return corePath(`scheduler/${path2 || ""}`);
|
|
201
|
+
}
|
|
202
|
+
function signalsPath(path2) {
|
|
203
|
+
return corePath(`signals/${path2 || ""}`);
|
|
204
|
+
}
|
|
205
|
+
function routesPath(path2) {
|
|
177
206
|
return projectPath(`routes/${path2 || ""}`);
|
|
178
207
|
}
|
|
179
|
-
|
|
208
|
+
function securityPath(path2) {
|
|
180
209
|
return corePath(`security/${path2 || ""}`);
|
|
181
210
|
}
|
|
182
|
-
|
|
211
|
+
function serverPath(path2) {
|
|
183
212
|
return corePath(`server/${path2 || ""}`);
|
|
184
213
|
}
|
|
185
|
-
|
|
214
|
+
function serverlessPath(path2) {
|
|
186
215
|
return corePath(`serverless/${path2 || ""}`);
|
|
187
216
|
}
|
|
188
|
-
|
|
217
|
+
function stacksPath(path2) {
|
|
189
218
|
return frameworkPath(`src/${path2 || ""}`);
|
|
190
219
|
}
|
|
191
|
-
|
|
220
|
+
function tablesPath(path2) {
|
|
192
221
|
return corePath(`tables/${path2 || ""}`);
|
|
193
222
|
}
|
|
194
|
-
|
|
223
|
+
function testingPath(path2) {
|
|
195
224
|
return corePath(`testing/${path2 || ""}`);
|
|
196
225
|
}
|
|
197
|
-
|
|
226
|
+
function testsPath(path2) {
|
|
198
227
|
return frameworkPath(`tests/${path2 || ""}`);
|
|
199
228
|
}
|
|
200
|
-
|
|
229
|
+
function typesPath(path2) {
|
|
201
230
|
return corePath(`types/${path2 || ""}`);
|
|
202
231
|
}
|
|
203
|
-
|
|
232
|
+
function stringsPath(path2) {
|
|
204
233
|
return corePath(`strings/${path2 || ""}`);
|
|
205
234
|
}
|
|
206
|
-
|
|
235
|
+
function scriptsPath(path2) {
|
|
207
236
|
return frameworkPath(`scripts/${path2 || ""}`);
|
|
208
237
|
}
|
|
209
|
-
|
|
238
|
+
function uiPath(path2) {
|
|
210
239
|
return corePath(`ui/${path2 || ""}`);
|
|
211
240
|
}
|
|
212
|
-
|
|
241
|
+
function utilsPath(path2) {
|
|
213
242
|
return corePath(`utils/${path2 || ""}`);
|
|
214
243
|
}
|
|
215
|
-
|
|
244
|
+
function validationPath(path2) {
|
|
216
245
|
return corePath(`validation/${path2 || ""}`);
|
|
217
246
|
}
|
|
218
|
-
|
|
247
|
+
const path = {
|
|
219
248
|
aiPath,
|
|
220
249
|
actionsPath,
|
|
221
250
|
aliasPath,
|
|
222
251
|
arraysPath,
|
|
252
|
+
appPath,
|
|
223
253
|
authPath,
|
|
224
254
|
buildEnginePath,
|
|
225
255
|
buildEntriesPath,
|
|
@@ -227,22 +257,25 @@ export const path = {
|
|
|
227
257
|
cachePath,
|
|
228
258
|
chatPath,
|
|
229
259
|
cliPath,
|
|
260
|
+
cloudPath,
|
|
230
261
|
collectionsPath,
|
|
231
262
|
componentsPath,
|
|
232
263
|
configPath,
|
|
264
|
+
userConfigPath,
|
|
233
265
|
corePath,
|
|
234
266
|
customElementsDataPath,
|
|
235
267
|
databasePath,
|
|
268
|
+
developmentPath,
|
|
236
269
|
dashboardPath,
|
|
237
270
|
desktopPath,
|
|
238
271
|
docsPath,
|
|
239
272
|
domainsPath,
|
|
240
|
-
driversPath,
|
|
241
273
|
emailPath,
|
|
242
274
|
errorHandlingPath,
|
|
243
275
|
eventsPath,
|
|
244
276
|
healthPath,
|
|
245
277
|
examplesPath,
|
|
278
|
+
fakerPath,
|
|
246
279
|
frameworkPath,
|
|
247
280
|
storagePath,
|
|
248
281
|
functionsPath,
|
|
@@ -251,8 +284,8 @@ export const path = {
|
|
|
251
284
|
libraryEntryPath,
|
|
252
285
|
lintPath,
|
|
253
286
|
loggingPath,
|
|
254
|
-
xRayPath,
|
|
255
287
|
modulesPath,
|
|
288
|
+
ormPath,
|
|
256
289
|
objectsPath,
|
|
257
290
|
onboardingPath,
|
|
258
291
|
notificationsPath,
|
|
@@ -262,13 +295,16 @@ export const path = {
|
|
|
262
295
|
paymentsPath,
|
|
263
296
|
projectPath,
|
|
264
297
|
pushPath,
|
|
298
|
+
queryBuilderPath,
|
|
265
299
|
queuePath,
|
|
266
300
|
realtimePath,
|
|
267
301
|
routerPath,
|
|
268
302
|
routesPath,
|
|
269
303
|
searchEnginePath,
|
|
304
|
+
schedulerPath,
|
|
270
305
|
settingsPath,
|
|
271
306
|
smsPath,
|
|
307
|
+
signalsPath,
|
|
272
308
|
scriptsPath,
|
|
273
309
|
securityPath,
|
|
274
310
|
serverPath,
|
|
@@ -282,6 +318,7 @@ export const path = {
|
|
|
282
318
|
uiPath,
|
|
283
319
|
utilsPath,
|
|
284
320
|
validationPath,
|
|
321
|
+
xRayPath,
|
|
285
322
|
// path utils
|
|
286
323
|
basename,
|
|
287
324
|
delimiter,
|
|
@@ -298,5 +335,5 @@ export const path = {
|
|
|
298
335
|
sep,
|
|
299
336
|
toNamespacedPath
|
|
300
337
|
};
|
|
301
|
-
|
|
302
|
-
export
|
|
338
|
+
|
|
339
|
+
export { actionsPath, aiPath, aliasPath, appPath, arraysPath, authPath, buildEnginePath, buildEntriesPath, buildPath, cachePath, chatPath, cliPath, cloudPath, collectionsPath, componentsPath, configPath, corePath, customElementsDataPath, dashboardPath, databasePath, desktopPath, developmentPath, docsPath, domainsPath, emailPath, errorHandlingPath, eventsPath, examplesPath, fakerPath, frameworkPath, functionsPath, gitPath, healthPath, langPath, libraryEntryPath, lintPath, loggingPath, modelsPath, modulesPath, notificationsPath, objectsPath, onboardingPath, ormPath, packageJsonPath, pagesPath, path, pathPath, paymentsPath, projectPath, pushPath, queryBuilderPath, queuePath, realtimePath, routerPath, routesPath, runtimePath, schedulerPath, scriptsPath, searchEnginePath, securityPath, serverPath, serverlessPath, settingsPath, signalsPath, smsPath, stacksPath, storagePath, stringsPath, tablesPath, testingPath, testsPath, typesPath, uiPath, userConfigPath, utilsPath, validationPath, xRayPath };
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/path",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@
|
|
4
|
+
"version": "0.52.1",
|
|
5
|
+
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The Stacks path.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -24,6 +24,13 @@
|
|
|
24
24
|
"functions",
|
|
25
25
|
"stacks"
|
|
26
26
|
],
|
|
27
|
+
"exports": {
|
|
28
|
+
".": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"require": "./dist/index.cjs",
|
|
31
|
+
"import": "./dist/index.mjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
27
34
|
"main": "dist/index.mjs",
|
|
28
35
|
"module": "dist/index.mjs",
|
|
29
36
|
"types": "dist/index.d.ts",
|
|
@@ -34,21 +41,16 @@
|
|
|
34
41
|
"dist",
|
|
35
42
|
"README.md"
|
|
36
43
|
],
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=v18.14.0",
|
|
39
|
-
"pnpm": ">=7.26.3"
|
|
40
|
-
},
|
|
41
44
|
"dependencies": {
|
|
42
45
|
"pathe": "^1.1.0"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"@stacksjs/testing": "0.51.0"
|
|
48
|
+
"@stacksjs/alias": "0.52.1",
|
|
49
|
+
"@stacksjs/development": "0.52.1"
|
|
48
50
|
},
|
|
49
51
|
"scripts": {
|
|
50
|
-
"build": "
|
|
51
|
-
"dev": "
|
|
52
|
+
"build": "unbuild",
|
|
53
|
+
"dev": "unbuild --stub",
|
|
52
54
|
"typecheck": "tsc --noEmit"
|
|
53
55
|
}
|
|
54
56
|
}
|