stacks 0.58.30 → 0.58.32
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/core/actions/dist/src/generate/lib-entries.js +6 -6
- package/core/actions/dist/src/helpers/lib-entries.js +6 -6
- package/core/actions/dist/src/helpers/package-json.js +1 -1
- package/core/actions/dist/src/index.js +7 -7
- package/core/actions/dist/src/make.js +7 -7
- package/core/actions/dist/src/release.js +7 -7
- package/core/actions/dist/src/upgrade.js +1 -1
- package/core/actions/package.json +1 -1
- package/core/actions/src/helpers/lib-entries.ts +6 -6
- package/core/actions/src/helpers/package-json.ts +1 -1
- package/core/actions/src/make.ts +7 -7
- package/core/ai/package.json +1 -1
- package/core/alias/package.json +1 -1
- package/core/analytics/package.json +1 -1
- package/core/api/package.json +1 -1
- package/core/arrays/package.json +1 -1
- package/core/auth/package.json +1 -1
- package/core/buddy/dist/{chunk-61e8f138963fc709.js → chunk-c58676a39cd23812.js} +1 -1
- package/core/buddy/dist/cli.js +1 -1
- package/core/buddy/dist/index.js +1 -1
- package/core/buddy/package.json +1 -1
- package/core/buddy/src/commands/generate.ts +1 -1
- package/core/build/package.json +1 -1
- package/core/bun-create/bud/package.json +1 -1
- package/core/bun-create/buddy/package.json +1 -1
- package/core/bun-create/stack/package.json +1 -1
- package/core/bun-create/stacks/package.json +1 -1
- package/core/bun-create/stx/package.json +1 -1
- package/core/bun-plugin-yaml/package.json +1 -1
- package/core/cache/package.json +1 -1
- package/core/chat/package.json +1 -1
- package/core/cli/dist/index.js +1 -1
- package/core/cli/package.json +1 -1
- package/core/cloud/package.json +1 -1
- package/core/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +1 -1
- package/core/collections/package.json +1 -1
- package/core/config/package.json +1 -1
- package/core/database/package.json +1 -1
- package/core/datetime/package.json +1 -1
- package/core/desktop/package.json +1 -1
- package/core/development/package.json +1 -1
- package/core/dns/package.json +1 -1
- package/core/docs/package.json +1 -1
- package/core/email/package.json +1 -1
- package/core/enums/package.json +1 -1
- package/core/env/package.json +1 -1
- package/core/error-handling/package.json +1 -1
- package/core/eslint-config/package.json +1 -1
- package/core/events/package.json +1 -1
- package/core/faker/package.json +1 -1
- package/core/git/package.json +1 -1
- package/core/health/package.json +1 -1
- package/core/http/package.json +1 -1
- package/core/lint/package.json +1 -1
- package/core/logging/package.json +1 -1
- package/core/music/package.json +1 -1
- package/core/notifications/package.json +1 -1
- package/core/objects/package.json +1 -1
- package/core/orm/package.json +1 -1
- package/core/path/package.json +1 -1
- package/core/payments/package.json +1 -1
- package/core/push/package.json +1 -1
- package/core/query-builder/package.json +1 -1
- package/core/queue/package.json +1 -1
- package/core/raycast/package.json +1 -1
- package/core/realtime/package.json +1 -1
- package/core/repl/package.json +1 -1
- package/core/router/package.json +1 -1
- package/core/scheduler/package.json +1 -1
- package/core/search-engine/package.json +1 -1
- package/core/security/package.json +1 -1
- package/core/server/package.json +1 -1
- package/core/signals/package.json +1 -1
- package/core/slug/package.json +1 -1
- package/core/sms/package.json +1 -1
- package/core/storage/package.json +1 -1
- package/core/strings/package.json +1 -1
- package/core/tables/package.json +1 -1
- package/core/testing/package.json +1 -1
- package/core/tinker/package.json +1 -1
- package/core/tunnel/package.json +1 -1
- package/core/types/package.json +1 -1
- package/core/ui/package.json +1 -1
- package/core/utils/dist/index.js +1 -1
- package/core/utils/package.json +1 -1
- package/core/validation/package.json +1 -1
- package/core/vite/dist/index.js +1 -1
- package/core/vite/package.json +1 -1
- package/core/whois/package.json +1 -1
- package/core/x-ray/package.json +1 -1
- package/core/zsh-buddy/package.json +1 -1
- package/ide/vscode/package.json +1 -1
- package/package.json +1 -1
|
@@ -70,15 +70,15 @@ async function createLibraryEntryPoint(type) {
|
|
|
70
70
|
await createFunctionLibraryEntryPoint();
|
|
71
71
|
}
|
|
72
72
|
async function createVueLibraryEntryPoint(type = "vue-components") {
|
|
73
|
-
log.info("Creating Vue
|
|
73
|
+
log.info("Creating Vue Component Library Entry Point...");
|
|
74
74
|
await writeTextFile({
|
|
75
75
|
path: libraryEntryPath(type),
|
|
76
76
|
data: generateEntryPointData(type)
|
|
77
77
|
}).catch((err) => {
|
|
78
|
-
log.error("There was an error generating the Vue
|
|
78
|
+
log.error("There was an error generating the Vue Component Library Entry Point.", err);
|
|
79
79
|
process.exit(ExitCode.FatalError);
|
|
80
80
|
});
|
|
81
|
-
log.success("Created
|
|
81
|
+
log.success("Created Vue Component Library Entry Point");
|
|
82
82
|
}
|
|
83
83
|
async function createWebComponentLibraryEntryPoint(type = "web-components") {
|
|
84
84
|
log.info("Creating Web Component library entry point...");
|
|
@@ -92,15 +92,15 @@ async function createWebComponentLibraryEntryPoint(type = "web-components") {
|
|
|
92
92
|
log.success("Created Web Component library entry point");
|
|
93
93
|
}
|
|
94
94
|
async function createFunctionLibraryEntryPoint(type = "functions") {
|
|
95
|
-
log.info("Creating Function
|
|
95
|
+
log.info("Creating Function Library Entry Point...");
|
|
96
96
|
await writeTextFile({
|
|
97
97
|
path: libraryEntryPath(type),
|
|
98
98
|
data: generateEntryPointData(type)
|
|
99
99
|
}).catch((err) => {
|
|
100
|
-
log.error("There was an error generating Function
|
|
100
|
+
log.error("There was an error generating Function Library Entry Point", err);
|
|
101
101
|
process.exit(ExitCode.FatalError);
|
|
102
102
|
});
|
|
103
|
-
log.success("Created Functions
|
|
103
|
+
log.success("Created Functions Library Entry Point");
|
|
104
104
|
}
|
|
105
105
|
function generateEntryPointData(type) {
|
|
106
106
|
let arr = [];
|
|
@@ -68,15 +68,15 @@ async function createLibraryEntryPoint(type) {
|
|
|
68
68
|
await createFunctionLibraryEntryPoint();
|
|
69
69
|
}
|
|
70
70
|
async function createVueLibraryEntryPoint(type = "vue-components") {
|
|
71
|
-
log.info("Creating Vue
|
|
71
|
+
log.info("Creating Vue Component Library Entry Point...");
|
|
72
72
|
await writeTextFile({
|
|
73
73
|
path: libraryEntryPath(type),
|
|
74
74
|
data: generateEntryPointData(type)
|
|
75
75
|
}).catch((err) => {
|
|
76
|
-
log.error("There was an error generating the Vue
|
|
76
|
+
log.error("There was an error generating the Vue Component Library Entry Point.", err);
|
|
77
77
|
process.exit(ExitCode.FatalError);
|
|
78
78
|
});
|
|
79
|
-
log.success("Created
|
|
79
|
+
log.success("Created Vue Component Library Entry Point");
|
|
80
80
|
}
|
|
81
81
|
async function createWebComponentLibraryEntryPoint(type = "web-components") {
|
|
82
82
|
log.info("Creating Web Component library entry point...");
|
|
@@ -90,15 +90,15 @@ async function createWebComponentLibraryEntryPoint(type = "web-components") {
|
|
|
90
90
|
log.success("Created Web Component library entry point");
|
|
91
91
|
}
|
|
92
92
|
async function createFunctionLibraryEntryPoint(type = "functions") {
|
|
93
|
-
log.info("Creating Function
|
|
93
|
+
log.info("Creating Function Library Entry Point...");
|
|
94
94
|
await writeTextFile({
|
|
95
95
|
path: libraryEntryPath(type),
|
|
96
96
|
data: generateEntryPointData(type)
|
|
97
97
|
}).catch((err) => {
|
|
98
|
-
log.error("There was an error generating Function
|
|
98
|
+
log.error("There was an error generating Function Library Entry Point", err);
|
|
99
99
|
process.exit(ExitCode.FatalError);
|
|
100
100
|
});
|
|
101
|
-
log.success("Created Functions
|
|
101
|
+
log.success("Created Functions Library Entry Point");
|
|
102
102
|
}
|
|
103
103
|
function generateEntryPointData(type) {
|
|
104
104
|
let arr = [];
|
|
@@ -125,7 +125,7 @@ async function generatePackageJson(type) {
|
|
|
125
125
|
prettyName = "Web Component library";
|
|
126
126
|
else if (type === "functions")
|
|
127
127
|
prettyName = "Function Library";
|
|
128
|
-
log.success(`Created
|
|
128
|
+
log.success(`Created ${prettyName} package.json file`);
|
|
129
129
|
} catch (err) {
|
|
130
130
|
log.error(`There was an error creating the ${prettyName} package.json`, err);
|
|
131
131
|
}
|
|
@@ -282,7 +282,7 @@ async function makeComponent(options) {
|
|
|
282
282
|
const name = options.name;
|
|
283
283
|
log6.info("Creating your component...");
|
|
284
284
|
await createComponent(options);
|
|
285
|
-
log6.success(`Created
|
|
285
|
+
log6.success(`Created ${italic2(name)} component`);
|
|
286
286
|
} catch (error) {
|
|
287
287
|
log6.error("There was an error creating your component", error);
|
|
288
288
|
process3.exit();
|
|
@@ -310,7 +310,7 @@ function makeDatabase(options) {
|
|
|
310
310
|
const name = options.name;
|
|
311
311
|
log6.info(`Creating your ${italic2(name)} database...`);
|
|
312
312
|
createDatabase(options);
|
|
313
|
-
log6.success(`Created
|
|
313
|
+
log6.success(`Created ${italic2(name)} database`);
|
|
314
314
|
} catch (error) {
|
|
315
315
|
log6.error("There was an error creating your database", error);
|
|
316
316
|
process3.exit();
|
|
@@ -324,7 +324,7 @@ function factory(options) {
|
|
|
324
324
|
const name = options.name;
|
|
325
325
|
log6.info(`Creating your ${italic2(name)} factory...`);
|
|
326
326
|
createDatabase(options);
|
|
327
|
-
log6.success(`Created
|
|
327
|
+
log6.success(`Created ${italic2(name)} factory`);
|
|
328
328
|
} catch (error) {
|
|
329
329
|
log6.error("There was an error creating your factory", error);
|
|
330
330
|
process3.exit();
|
|
@@ -338,7 +338,7 @@ async function makeNotification(options) {
|
|
|
338
338
|
const name = options.name;
|
|
339
339
|
log6.info(`Creating your ${italic2(name)} notification...`);
|
|
340
340
|
await createNotification(options);
|
|
341
|
-
log6.success(`Created
|
|
341
|
+
log6.success(`Created ${italic2(name)} notification`);
|
|
342
342
|
} catch (error) {
|
|
343
343
|
log6.error("There was an error creating your notification", error);
|
|
344
344
|
process3.exit();
|
|
@@ -349,7 +349,7 @@ async function makePage(options) {
|
|
|
349
349
|
const name = options.name;
|
|
350
350
|
log6.info("Creating your page...");
|
|
351
351
|
await createPage(options);
|
|
352
|
-
log6.success(`Created
|
|
352
|
+
log6.success(`Created ${name} page`);
|
|
353
353
|
} catch (error) {
|
|
354
354
|
log6.error("There was an error creating your page", error);
|
|
355
355
|
process3.exit();
|
|
@@ -377,7 +377,7 @@ async function makeFunction(options) {
|
|
|
377
377
|
const name = options.name;
|
|
378
378
|
log6.info("Creating your function...");
|
|
379
379
|
await createFunction(options);
|
|
380
|
-
log6.success(`Created
|
|
380
|
+
log6.success(`Created ${name} function`);
|
|
381
381
|
} catch (error) {
|
|
382
382
|
log6.error("There was an error creating your function", error);
|
|
383
383
|
process3.exit();
|
|
@@ -407,7 +407,7 @@ async function makeLanguage(options) {
|
|
|
407
407
|
const name = options.name;
|
|
408
408
|
log6.info("Creating your translation file...");
|
|
409
409
|
await createLanguage(options);
|
|
410
|
-
log6.success(`Created
|
|
410
|
+
log6.success(`Created ${name} translation file`);
|
|
411
411
|
} catch (error) {
|
|
412
412
|
log6.error("There was an error creating your language.", error);
|
|
413
413
|
process3.exit();
|
|
@@ -29,7 +29,7 @@ async function makeComponent(options) {
|
|
|
29
29
|
const name = options.name;
|
|
30
30
|
log.info("Creating your component...");
|
|
31
31
|
await createComponent(options);
|
|
32
|
-
log.success(`Created
|
|
32
|
+
log.success(`Created ${italic(name)} component`);
|
|
33
33
|
} catch (error) {
|
|
34
34
|
log.error("There was an error creating your component", error);
|
|
35
35
|
process.exit();
|
|
@@ -57,7 +57,7 @@ function makeDatabase(options) {
|
|
|
57
57
|
const name = options.name;
|
|
58
58
|
log.info(`Creating your ${italic(name)} database...`);
|
|
59
59
|
createDatabase(options);
|
|
60
|
-
log.success(`Created
|
|
60
|
+
log.success(`Created ${italic(name)} database`);
|
|
61
61
|
} catch (error) {
|
|
62
62
|
log.error("There was an error creating your database", error);
|
|
63
63
|
process.exit();
|
|
@@ -71,7 +71,7 @@ function factory(options) {
|
|
|
71
71
|
const name = options.name;
|
|
72
72
|
log.info(`Creating your ${italic(name)} factory...`);
|
|
73
73
|
createDatabase(options);
|
|
74
|
-
log.success(`Created
|
|
74
|
+
log.success(`Created ${italic(name)} factory`);
|
|
75
75
|
} catch (error) {
|
|
76
76
|
log.error("There was an error creating your factory", error);
|
|
77
77
|
process.exit();
|
|
@@ -85,7 +85,7 @@ async function makeNotification(options) {
|
|
|
85
85
|
const name = options.name;
|
|
86
86
|
log.info(`Creating your ${italic(name)} notification...`);
|
|
87
87
|
await createNotification(options);
|
|
88
|
-
log.success(`Created
|
|
88
|
+
log.success(`Created ${italic(name)} notification`);
|
|
89
89
|
} catch (error) {
|
|
90
90
|
log.error("There was an error creating your notification", error);
|
|
91
91
|
process.exit();
|
|
@@ -96,7 +96,7 @@ async function makePage(options) {
|
|
|
96
96
|
const name = options.name;
|
|
97
97
|
log.info("Creating your page...");
|
|
98
98
|
await createPage(options);
|
|
99
|
-
log.success(`Created
|
|
99
|
+
log.success(`Created ${name} page`);
|
|
100
100
|
} catch (error) {
|
|
101
101
|
log.error("There was an error creating your page", error);
|
|
102
102
|
process.exit();
|
|
@@ -124,7 +124,7 @@ async function makeFunction(options) {
|
|
|
124
124
|
const name = options.name;
|
|
125
125
|
log.info("Creating your function...");
|
|
126
126
|
await createFunction(options);
|
|
127
|
-
log.success(`Created
|
|
127
|
+
log.success(`Created ${name} function`);
|
|
128
128
|
} catch (error) {
|
|
129
129
|
log.error("There was an error creating your function", error);
|
|
130
130
|
process.exit();
|
|
@@ -154,7 +154,7 @@ async function makeLanguage(options) {
|
|
|
154
154
|
const name = options.name;
|
|
155
155
|
log.info("Creating your translation file...");
|
|
156
156
|
await createLanguage(options);
|
|
157
|
-
log.success(`Created
|
|
157
|
+
log.success(`Created ${name} translation file`);
|
|
158
158
|
} catch (error) {
|
|
159
159
|
log.error("There was an error creating your language.", error);
|
|
160
160
|
process.exit();
|
|
@@ -284,7 +284,7 @@ async function makeComponent(options) {
|
|
|
284
284
|
const name = options.name;
|
|
285
285
|
log6.info("Creating your component...");
|
|
286
286
|
await createComponent(options);
|
|
287
|
-
log6.success(`Created
|
|
287
|
+
log6.success(`Created ${italic2(name)} component`);
|
|
288
288
|
} catch (error) {
|
|
289
289
|
log6.error("There was an error creating your component", error);
|
|
290
290
|
process3.exit();
|
|
@@ -312,7 +312,7 @@ function makeDatabase(options) {
|
|
|
312
312
|
const name = options.name;
|
|
313
313
|
log6.info(`Creating your ${italic2(name)} database...`);
|
|
314
314
|
createDatabase(options);
|
|
315
|
-
log6.success(`Created
|
|
315
|
+
log6.success(`Created ${italic2(name)} database`);
|
|
316
316
|
} catch (error) {
|
|
317
317
|
log6.error("There was an error creating your database", error);
|
|
318
318
|
process3.exit();
|
|
@@ -326,7 +326,7 @@ function factory(options) {
|
|
|
326
326
|
const name = options.name;
|
|
327
327
|
log6.info(`Creating your ${italic2(name)} factory...`);
|
|
328
328
|
createDatabase(options);
|
|
329
|
-
log6.success(`Created
|
|
329
|
+
log6.success(`Created ${italic2(name)} factory`);
|
|
330
330
|
} catch (error) {
|
|
331
331
|
log6.error("There was an error creating your factory", error);
|
|
332
332
|
process3.exit();
|
|
@@ -340,7 +340,7 @@ async function makeNotification(options) {
|
|
|
340
340
|
const name = options.name;
|
|
341
341
|
log6.info(`Creating your ${italic2(name)} notification...`);
|
|
342
342
|
await createNotification(options);
|
|
343
|
-
log6.success(`Created
|
|
343
|
+
log6.success(`Created ${italic2(name)} notification`);
|
|
344
344
|
} catch (error) {
|
|
345
345
|
log6.error("There was an error creating your notification", error);
|
|
346
346
|
process3.exit();
|
|
@@ -351,7 +351,7 @@ async function makePage(options) {
|
|
|
351
351
|
const name = options.name;
|
|
352
352
|
log6.info("Creating your page...");
|
|
353
353
|
await createPage(options);
|
|
354
|
-
log6.success(`Created
|
|
354
|
+
log6.success(`Created ${name} page`);
|
|
355
355
|
} catch (error) {
|
|
356
356
|
log6.error("There was an error creating your page", error);
|
|
357
357
|
process3.exit();
|
|
@@ -379,7 +379,7 @@ async function makeFunction(options) {
|
|
|
379
379
|
const name = options.name;
|
|
380
380
|
log6.info("Creating your function...");
|
|
381
381
|
await createFunction(options);
|
|
382
|
-
log6.success(`Created
|
|
382
|
+
log6.success(`Created ${name} function`);
|
|
383
383
|
} catch (error) {
|
|
384
384
|
log6.error("There was an error creating your function", error);
|
|
385
385
|
process3.exit();
|
|
@@ -409,7 +409,7 @@ async function makeLanguage(options) {
|
|
|
409
409
|
const name = options.name;
|
|
410
410
|
log6.info("Creating your translation file...");
|
|
411
411
|
await createLanguage(options);
|
|
412
|
-
log6.success(`Created
|
|
412
|
+
log6.success(`Created ${name} translation file`);
|
|
413
413
|
} catch (error) {
|
|
414
414
|
log6.error("There was an error creating your language.", error);
|
|
415
415
|
process3.exit();
|
|
@@ -6,7 +6,7 @@ import {log} from "@stacksjs/logging";
|
|
|
6
6
|
import {projectPath} from "@stacksjs/path";
|
|
7
7
|
import * as storage from "@stacksjs/storage";
|
|
8
8
|
// package.json
|
|
9
|
-
var version = "0.58.
|
|
9
|
+
var version = "0.58.32";
|
|
10
10
|
|
|
11
11
|
// src/upgrade.ts
|
|
12
12
|
function checkForUncommittedChanges(options) {
|
|
@@ -30,17 +30,17 @@ export async function createLibraryEntryPoint(type: LibraryType) {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export async function createVueLibraryEntryPoint(type: LibraryType = 'vue-components') {
|
|
33
|
-
log.info('Creating Vue
|
|
33
|
+
log.info('Creating Vue Component Library Entry Point...')
|
|
34
34
|
|
|
35
35
|
await writeTextFile({
|
|
36
36
|
path: libraryEntryPath(type),
|
|
37
37
|
data: generateEntryPointData(type),
|
|
38
38
|
}).catch((err) => {
|
|
39
|
-
log.error('There was an error generating the Vue
|
|
39
|
+
log.error('There was an error generating the Vue Component Library Entry Point.', err)
|
|
40
40
|
process.exit(ExitCode.FatalError)
|
|
41
41
|
})
|
|
42
42
|
|
|
43
|
-
log.success('Created
|
|
43
|
+
log.success('Created Vue Component Library Entry Point')
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
export async function createWebComponentLibraryEntryPoint(type: LibraryType = 'web-components') {
|
|
@@ -58,17 +58,17 @@ export async function createWebComponentLibraryEntryPoint(type: LibraryType = 'w
|
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
export async function createFunctionLibraryEntryPoint(type: LibraryType = 'functions') {
|
|
61
|
-
log.info('Creating Function
|
|
61
|
+
log.info('Creating Function Library Entry Point...')
|
|
62
62
|
|
|
63
63
|
await writeTextFile({
|
|
64
64
|
path: libraryEntryPath(type),
|
|
65
65
|
data: generateEntryPointData(type),
|
|
66
66
|
}).catch((err) => {
|
|
67
|
-
log.error('There was an error generating Function
|
|
67
|
+
log.error('There was an error generating Function Library Entry Point', err)
|
|
68
68
|
process.exit(ExitCode.FatalError)
|
|
69
69
|
})
|
|
70
70
|
|
|
71
|
-
log.success('Created Functions
|
|
71
|
+
log.success('Created Functions Library Entry Point')
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
export function generateEntryPointData(type: LibraryType): string {
|
|
@@ -88,7 +88,7 @@ export async function generatePackageJson(type: PackageJsonType) {
|
|
|
88
88
|
else if (type === 'functions')
|
|
89
89
|
prettyName = 'Function Library'
|
|
90
90
|
|
|
91
|
-
log.success(`Created
|
|
91
|
+
log.success(`Created ${prettyName} package.json file`)
|
|
92
92
|
}
|
|
93
93
|
catch (err) {
|
|
94
94
|
log.error(`There was an error creating the ${prettyName} package.json`, err)
|
package/core/actions/src/make.ts
CHANGED
|
@@ -40,7 +40,7 @@ export async function makeComponent(options: MakeOptions) {
|
|
|
40
40
|
const name = options.name
|
|
41
41
|
log.info('Creating your component...')
|
|
42
42
|
await createComponent(options)
|
|
43
|
-
log.success(`Created
|
|
43
|
+
log.success(`Created ${italic(name)} component`)
|
|
44
44
|
}
|
|
45
45
|
catch (error) {
|
|
46
46
|
log.error('There was an error creating your component', error)
|
|
@@ -71,7 +71,7 @@ export function makeDatabase(options: MakeOptions) {
|
|
|
71
71
|
const name = options.name
|
|
72
72
|
log.info(`Creating your ${italic(name)} database...`)
|
|
73
73
|
createDatabase(options)
|
|
74
|
-
log.success(`Created
|
|
74
|
+
log.success(`Created ${italic(name)} database`)
|
|
75
75
|
}
|
|
76
76
|
catch (error) {
|
|
77
77
|
log.error('There was an error creating your database', error)
|
|
@@ -89,7 +89,7 @@ export function factory(options: MakeOptions) {
|
|
|
89
89
|
const name = options.name
|
|
90
90
|
log.info(`Creating your ${italic(name)} factory...`)
|
|
91
91
|
createDatabase(options)
|
|
92
|
-
log.success(`Created
|
|
92
|
+
log.success(`Created ${italic(name)} factory`)
|
|
93
93
|
}
|
|
94
94
|
catch (error) {
|
|
95
95
|
log.error('There was an error creating your factory', error)
|
|
@@ -107,7 +107,7 @@ export async function makeNotification(options: MakeOptions) {
|
|
|
107
107
|
const name = options.name
|
|
108
108
|
log.info(`Creating your ${italic(name)} notification...`)
|
|
109
109
|
await createNotification(options)
|
|
110
|
-
log.success(`Created
|
|
110
|
+
log.success(`Created ${italic(name)} notification`)
|
|
111
111
|
}
|
|
112
112
|
catch (error) {
|
|
113
113
|
log.error('There was an error creating your notification', error)
|
|
@@ -120,7 +120,7 @@ export async function makePage(options: MakeOptions) {
|
|
|
120
120
|
const name = options.name
|
|
121
121
|
log.info('Creating your page...')
|
|
122
122
|
await createPage(options)
|
|
123
|
-
log.success(`Created
|
|
123
|
+
log.success(`Created ${name} page`)
|
|
124
124
|
}
|
|
125
125
|
catch (error) {
|
|
126
126
|
log.error('There was an error creating your page', error)
|
|
@@ -152,7 +152,7 @@ export async function makeFunction(options: MakeOptions) {
|
|
|
152
152
|
const name = options.name
|
|
153
153
|
log.info('Creating your function...')
|
|
154
154
|
await createFunction(options)
|
|
155
|
-
log.success(`Created
|
|
155
|
+
log.success(`Created ${name} function`)
|
|
156
156
|
}
|
|
157
157
|
catch (error) {
|
|
158
158
|
log.error('There was an error creating your function', error)
|
|
@@ -185,7 +185,7 @@ export async function makeLanguage(options: MakeOptions) {
|
|
|
185
185
|
const name = options.name
|
|
186
186
|
log.info('Creating your translation file...')
|
|
187
187
|
await createLanguage(options)
|
|
188
|
-
log.success(`Created
|
|
188
|
+
log.success(`Created ${name} translation file`)
|
|
189
189
|
}
|
|
190
190
|
catch (error) {
|
|
191
191
|
log.error('There was an error creating your language.', error)
|
package/core/ai/package.json
CHANGED
package/core/alias/package.json
CHANGED
package/core/api/package.json
CHANGED
package/core/arrays/package.json
CHANGED
package/core/auth/package.json
CHANGED
|
@@ -951,7 +951,7 @@ function generate(buddy) {
|
|
|
951
951
|
const descriptions = {
|
|
952
952
|
command: "Automagically build any of your libraries/packages for production use. Select any of the following packages",
|
|
953
953
|
types: "Generate your TypeScript types",
|
|
954
|
-
entries: "Generate your function &
|
|
954
|
+
entries: "Generate your function & Component Library Entry Points",
|
|
955
955
|
webTypes: "Generate web-types.json for IDEs",
|
|
956
956
|
customData: "Generate VS Code custom data (custom-elements.json) for IDEs",
|
|
957
957
|
ideHelpers: "Generate IDE helpers",
|
package/core/buddy/dist/cli.js
CHANGED
package/core/buddy/dist/index.js
CHANGED
package/core/buddy/package.json
CHANGED
|
@@ -18,7 +18,7 @@ export function generate(buddy: CLI) {
|
|
|
18
18
|
const descriptions = {
|
|
19
19
|
command: 'Automagically build any of your libraries/packages for production use. Select any of the following packages',
|
|
20
20
|
types: 'Generate your TypeScript types',
|
|
21
|
-
entries: 'Generate your function &
|
|
21
|
+
entries: 'Generate your function & Component Library Entry Points',
|
|
22
22
|
webTypes: 'Generate web-types.json for IDEs',
|
|
23
23
|
customData: 'Generate VS Code custom data (custom-elements.json) for IDEs',
|
|
24
24
|
ideHelpers: 'Generate IDE helpers',
|
package/core/build/package.json
CHANGED
package/core/cache/package.json
CHANGED
package/core/chat/package.json
CHANGED
package/core/cli/dist/index.js
CHANGED
package/core/cli/package.json
CHANGED