@adonisjs/core 7.0.0-next.8 → 7.0.0
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 +62 -1
- package/build/chunk-iKc69rpz.js +26 -0
- package/build/commands/add.d.ts +4 -3
- package/build/commands/add.js +73 -110
- package/build/commands/build.js +51 -107
- package/build/commands/commands.json +1 -1
- package/build/commands/configure.js +81 -177
- package/build/commands/eject.js +17 -60
- package/build/commands/env/add.js +55 -134
- package/build/commands/generate_key.js +22 -66
- package/build/commands/inspect_rcfile.js +27 -55
- package/build/commands/list/routes.js +246 -116
- package/build/commands/make/command.d.ts +5 -0
- package/build/commands/make/command.js +16 -57
- package/build/commands/make/controller.d.ts +5 -0
- package/build/commands/make/controller.js +44 -120
- package/build/commands/make/event.d.ts +5 -0
- package/build/commands/make/event.js +17 -62
- package/build/commands/make/exception.d.ts +5 -0
- package/build/commands/make/exception.js +17 -62
- package/build/commands/make/listener.d.ts +5 -0
- package/build/commands/make/listener.js +37 -93
- package/build/commands/make/middleware.d.ts +5 -0
- package/build/commands/make/middleware.js +42 -101
- package/build/commands/make/preload.d.ts +5 -0
- package/build/commands/make/preload.js +48 -113
- package/build/commands/make/provider.d.ts +5 -0
- package/build/commands/make/provider.js +48 -112
- package/build/commands/make/service.d.ts +5 -0
- package/build/commands/make/service.js +17 -55
- package/build/commands/make/test.d.ts +5 -0
- package/build/commands/make/test.js +48 -132
- package/build/commands/make/transformer.d.ts +5 -0
- package/build/commands/make/transformer.js +18 -64
- package/build/commands/make/validator.d.ts +5 -0
- package/build/commands/make/validator.js +21 -80
- package/build/commands/make/view.d.ts +5 -0
- package/build/commands/make/view.js +16 -56
- package/build/commands/repl.js +17 -50
- package/build/commands/serve.js +80 -156
- package/build/commands/test.js +92 -208
- package/build/config_provider-FIAUgvae.js +13 -0
- package/build/core-IpCOCkUL.js +146 -0
- package/build/create_kernel-B7ILNhuP.js +38 -0
- package/build/create_kernel-BD0Iqi8e.js +3 -0
- package/build/debug-CGQmxzGt.js +3 -0
- package/build/decorate-DmrZA614.js +7 -0
- package/build/define_config-0oHaj43l.js +86 -0
- package/build/dumper-BBgqFX5a.js +147 -0
- package/build/errors-CrCO-k44.js +8 -0
- package/build/factories/app.js +2 -9
- package/build/factories/bodyparser.js +2 -9
- package/build/factories/core/ace.js +22 -45
- package/build/factories/core/ignitor.js +74 -180
- package/build/factories/core/main.js +18 -11
- package/build/factories/core/test_utils.js +19 -42
- package/build/factories/encryption.d.ts +1 -1
- package/build/factories/encryption.js +2 -9
- package/build/factories/events.js +2 -9
- package/build/factories/hash.js +2 -9
- package/build/factories/http.js +2 -9
- package/build/factories/logger.js +2 -9
- package/build/factories/stubs.d.ts +1 -6
- package/build/factories/stubs.js +24 -91
- package/build/index.d.ts +1 -1
- package/build/index.js +10 -46
- package/build/main--nXd7T-C.js +73 -0
- package/build/main-Cxz0TyIw.js +173 -0
- package/build/main-DN2qEEg5.js +41 -0
- package/build/main-DkNgvceD.js +52 -0
- package/build/main-MBAMnmJb.js +81 -0
- package/build/main-kn40V-hF.js +2 -0
- package/build/{stubs/make → make}/health/controller.stub +5 -2
- package/build/modules/ace/codemods.d.ts +74 -22
- package/build/modules/ace/codemods.js +295 -476
- package/build/modules/ace/main.js +2 -41
- package/build/modules/app.js +6 -26
- package/build/modules/bodyparser/bodyparser_middleware.js +3 -14
- package/build/modules/bodyparser/main.js +6 -9
- package/build/modules/config.js +6 -26
- package/build/modules/container.js +6 -9
- package/build/modules/dumper/main.js +6 -32
- package/build/modules/dumper/plugins/edge.js +46 -61
- package/build/modules/encryption/define_config.d.ts +161 -0
- package/build/modules/encryption/drivers/aes_256_cbc.d.ts +20 -0
- package/build/modules/encryption/drivers/aes_256_cbc.js +2 -0
- package/build/modules/encryption/drivers/aes_256_gcm.d.ts +21 -0
- package/build/modules/encryption/drivers/aes_256_gcm.js +2 -0
- package/build/modules/encryption/drivers/aes_siv.d.ts +19 -0
- package/build/modules/encryption/drivers/aes_siv.js +2 -0
- package/build/modules/encryption/drivers/chacha20_poly1305.d.ts +21 -0
- package/build/modules/encryption/drivers/chacha20_poly1305.js +2 -0
- package/build/modules/encryption/drivers/legacy.d.ts +84 -0
- package/build/modules/encryption/drivers/legacy.js +57 -0
- package/build/modules/encryption/errors.d.ts +16 -0
- package/build/modules/encryption/main.d.ts +89 -0
- package/build/modules/encryption/main.js +6 -0
- package/build/modules/env/editor.js +2 -9
- package/build/modules/env/main.js +2 -28
- package/build/modules/events.js +6 -9
- package/build/modules/hash/drivers/argon.js +2 -9
- package/build/modules/hash/drivers/bcrypt.js +2 -20
- package/build/modules/hash/drivers/scrypt.js +2 -9
- package/build/modules/hash/main.js +6 -28
- package/build/modules/hash/phc_formatter.js +2 -9
- package/build/modules/health.js +2 -9
- package/build/modules/http/helpers.d.ts +1 -0
- package/build/modules/http/helpers.js +2 -0
- package/build/modules/http/main.js +4 -15
- package/build/modules/http/request_validator.d.ts +3 -4
- package/build/modules/http/url_builder_client.js +2 -9
- package/build/modules/logger.d.ts +30 -0
- package/build/modules/logger.js +14 -9
- package/build/modules/repl.js +6 -9
- package/build/modules/transformers/main.js +2 -9
- package/build/providers/app_provider.d.ts +14 -21
- package/build/providers/app_provider.js +153 -354
- package/build/providers/edge_provider.js +98 -164
- package/build/providers/hash_provider.js +29 -91
- package/build/providers/repl_provider.js +66 -152
- package/build/providers/vinejs_provider.d.ts +1 -1
- package/build/providers/vinejs_provider.js +21 -65
- package/build/services/ace.js +1 -16
- package/build/services/app.js +3 -19
- package/build/services/config.js +1 -12
- package/build/services/dumper.js +4 -20
- package/build/services/emitter.js +1 -13
- package/build/services/encryption.js +1 -13
- package/build/services/hash.js +1 -13
- package/build/services/logger.js +1 -13
- package/build/services/repl.js +1 -13
- package/build/services/router.js +1 -13
- package/build/services/server.js +1 -13
- package/build/services/test_utils.js +1 -16
- package/build/services/url_builder.d.ts +3 -3
- package/build/services/url_builder.js +4 -16
- package/build/src/assembler_hooks/index_entities.d.ts +34 -1
- package/build/src/debug.d.ts +1 -1
- package/build/src/exceptions.js +2 -49
- package/build/src/helpers/assert.js +2 -55
- package/build/src/helpers/http.js +2 -28
- package/build/src/helpers/is.js +3 -31
- package/build/src/helpers/main.js +5 -52
- package/build/src/helpers/string.js +26 -76
- package/build/src/helpers/types.js +25 -134
- package/build/src/helpers/verification_token.js +46 -120
- package/build/src/test_utils/main.js +8 -77
- package/build/src/types.d.ts +53 -99
- package/build/src/types.js +0 -8
- package/build/src/utils.d.ts +1 -1
- package/build/src/vine.js +29 -101
- package/build/toolkit/main.js +19 -21
- package/build/types/ace.js +2 -9
- package/build/types/app.js +2 -9
- package/build/types/bodyparser.js +2 -9
- package/build/types/common.js +2 -9
- package/build/types/container.js +2 -9
- package/build/types/encryption.d.ts +53 -1
- package/build/types/encryption.js +1 -9
- package/build/types/events.js +2 -9
- package/build/types/hash.js +2 -9
- package/build/types/health.js +2 -9
- package/build/types/helpers.js +0 -8
- package/build/types/http.js +2 -9
- package/build/types/logger.js +2 -9
- package/build/types/repl.js +2 -9
- package/build/types/transformers.js +2 -9
- package/build/utils-rRkbAPnP.js +42 -0
- package/package.json +117 -62
- package/build/modules/ace/commands.js +0 -157
- package/build/modules/ace/create_kernel.js +0 -91
- package/build/modules/ace/kernel.js +0 -40
- package/build/modules/dumper/define_config.js +0 -36
- package/build/modules/dumper/dumper.js +0 -266
- package/build/modules/dumper/errors.js +0 -119
- package/build/modules/encryption.d.ts +0 -18
- package/build/modules/encryption.js +0 -26
- package/build/modules/hash/define_config.js +0 -125
- package/build/modules/http/request_validator.js +0 -100
- package/build/src/assembler_hooks/index_entities.js +0 -112
- package/build/src/cli_formatters/routes_list.js +0 -397
- package/build/src/config_provider.js +0 -71
- package/build/src/debug.js +0 -25
- package/build/src/ignitor/ace.js +0 -102
- package/build/src/ignitor/http.js +0 -159
- package/build/src/ignitor/main.js +0 -124
- package/build/src/ignitor/test.js +0 -66
- package/build/src/test_utils/http.js +0 -82
- package/build/src/utils.js +0 -114
- package/build/stubs/main.js +0 -9
- package/build/toolkit/commands/index_commands.js +0 -30
- /package/build/{stubs/make → make}/command/main.stub +0 -0
- /package/build/{stubs/make → make}/controller/actions.stub +0 -0
- /package/build/{stubs/make → make}/controller/api.stub +0 -0
- /package/build/{stubs/make → make}/controller/main.stub +0 -0
- /package/build/{stubs/make → make}/controller/resource.stub +0 -0
- /package/build/{stubs/make → make}/event/main.stub +0 -0
- /package/build/{stubs/make → make}/exception/main.stub +0 -0
- /package/build/{stubs/make → make}/health/main.stub +0 -0
- /package/build/{stubs/make → make}/listener/for_event.stub +0 -0
- /package/build/{stubs/make → make}/listener/main.stub +0 -0
- /package/build/{stubs/make → make}/middleware/main.stub +0 -0
- /package/build/{stubs/make → make}/preload/main.stub +0 -0
- /package/build/{stubs/make → make}/provider/main.stub +0 -0
- /package/build/{stubs/make → make}/service/main.stub +0 -0
- /package/build/{stubs/make → make}/test/main.stub +0 -0
- /package/build/{stubs/make → make}/transformer/main.stub +0 -0
- /package/build/{stubs/make → make}/validator/main.stub +0 -0
- /package/build/{stubs/make → make}/validator/resource.stub +0 -0
- /package/build/{stubs/make → make}/view/main.stub +0 -0
|
@@ -1,133 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { t as stubsRoot } from "../../main-kn40V-hF.js";
|
|
2
|
+
import { f as BaseCommand, l as flags, o as args } from "../../main-MBAMnmJb.js";
|
|
3
|
+
import { t as __decorate } from "../../decorate-DmrZA614.js";
|
|
4
|
+
var MakeTest = class extends BaseCommand {
|
|
5
|
+
static commandName = "make:test";
|
|
6
|
+
static description = "Create a new Japa test file";
|
|
7
|
+
stubPath = "make/test/main.stub";
|
|
8
|
+
async #getSuite() {
|
|
9
|
+
if (this.suite) return this.suite;
|
|
10
|
+
const rcFileSuites = this.app.rcFile.tests.suites;
|
|
11
|
+
if (rcFileSuites.length === 1) return rcFileSuites[0].name;
|
|
12
|
+
return this.prompt.choice("Select the suite for the test file", this.app.rcFile.tests.suites.map((suite) => {
|
|
13
|
+
return suite.name;
|
|
14
|
+
}), { validate(choice) {
|
|
15
|
+
return choice ? true : "Please select a suite";
|
|
16
|
+
} });
|
|
17
|
+
}
|
|
18
|
+
async #getSuiteDirectory(directories) {
|
|
19
|
+
if (directories.length === 1) return directories[0];
|
|
20
|
+
return this.prompt.choice("Select directory for the test file", directories, { validate(choice) {
|
|
21
|
+
return choice ? true : "Please select a directory";
|
|
22
|
+
} });
|
|
23
|
+
}
|
|
24
|
+
#findSuite(suiteName) {
|
|
25
|
+
return this.app.rcFile.tests.suites.find((suite) => {
|
|
26
|
+
return suite.name === suiteName;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
async run() {
|
|
30
|
+
const suite = this.#findSuite(await this.#getSuite());
|
|
31
|
+
if (!suite) {
|
|
32
|
+
this.logger.error(`The "${this.suite}" suite is not configured inside the "adonisrc.js" file`);
|
|
33
|
+
this.exitCode = 1;
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
await (await this.createCodemods()).makeUsingStub(stubsRoot, this.stubPath, {
|
|
37
|
+
flags: this.parsed.flags,
|
|
38
|
+
entity: this.app.generators.createEntity(this.name),
|
|
39
|
+
suite: { directory: await this.#getSuiteDirectory(suite.directories) }
|
|
40
|
+
}, { contentsFromFile: this.contentsFrom });
|
|
41
|
+
}
|
|
14
42
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
* @example
|
|
23
|
-
* ```
|
|
24
|
-
* ace make:test UserController
|
|
25
|
-
* ace make:test UserModel --suite=unit
|
|
26
|
-
* ace make:test AuthService --suite=integration
|
|
27
|
-
* ```
|
|
28
|
-
*/
|
|
29
|
-
export default class MakeTest extends BaseCommand {
|
|
30
|
-
/**
|
|
31
|
-
* The command name
|
|
32
|
-
*/
|
|
33
|
-
static commandName = 'make:test';
|
|
34
|
-
/**
|
|
35
|
-
* The command description
|
|
36
|
-
*/
|
|
37
|
-
static description = 'Create a new Japa test file';
|
|
38
|
-
/**
|
|
39
|
-
* The stub template file to use for generating the test file
|
|
40
|
-
*/
|
|
41
|
-
stubPath = 'make/test/main.stub';
|
|
42
|
-
/**
|
|
43
|
-
* Determine the test suite name for creating the test file.
|
|
44
|
-
* Uses the provided suite flag, or automatically selects if only one suite exists,
|
|
45
|
-
* or prompts the user to choose from available suites.
|
|
46
|
-
*
|
|
47
|
-
* @returns The name of the selected test suite
|
|
48
|
-
*/
|
|
49
|
-
async #getSuite() {
|
|
50
|
-
if (this.suite) {
|
|
51
|
-
return this.suite;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* Use the first suite from the rcFile when there is only
|
|
55
|
-
* one suite
|
|
56
|
-
*/
|
|
57
|
-
const rcFileSuites = this.app.rcFile.tests.suites;
|
|
58
|
-
if (rcFileSuites.length === 1) {
|
|
59
|
-
return rcFileSuites[0].name;
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* Prompt the user to select a suite manually
|
|
63
|
-
*/
|
|
64
|
-
return this.prompt.choice('Select the suite for the test file', this.app.rcFile.tests.suites.map((suite) => {
|
|
65
|
-
return suite.name;
|
|
66
|
-
}), {
|
|
67
|
-
validate(choice) {
|
|
68
|
-
return choice ? true : 'Please select a suite';
|
|
69
|
-
},
|
|
70
|
-
});
|
|
71
|
-
}
|
|
72
|
-
/**
|
|
73
|
-
* Determine the directory path for the test file within the selected suite.
|
|
74
|
-
* Automatically selects if only one directory exists, otherwise prompts the user.
|
|
75
|
-
*
|
|
76
|
-
* @param directories - Array of available directories for the suite
|
|
77
|
-
* @returns The selected directory path
|
|
78
|
-
*/
|
|
79
|
-
async #getSuiteDirectory(directories) {
|
|
80
|
-
if (directories.length === 1) {
|
|
81
|
-
return directories[0];
|
|
82
|
-
}
|
|
83
|
-
return this.prompt.choice('Select directory for the test file', directories, {
|
|
84
|
-
validate(choice) {
|
|
85
|
-
return choice ? true : 'Please select a directory';
|
|
86
|
-
},
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* Find suite configuration from the RC file by name.
|
|
91
|
-
*
|
|
92
|
-
* @param suiteName - The name of the suite to find
|
|
93
|
-
* @returns The suite configuration or undefined if not found
|
|
94
|
-
*/
|
|
95
|
-
#findSuite(suiteName) {
|
|
96
|
-
return this.app.rcFile.tests.suites.find((suite) => {
|
|
97
|
-
return suite.name === suiteName;
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* Execute the command to create a new test file.
|
|
102
|
-
* Validates the suite exists, prompts for missing information,
|
|
103
|
-
* and generates the test file in the appropriate location.
|
|
104
|
-
*/
|
|
105
|
-
async run() {
|
|
106
|
-
const suite = this.#findSuite(await this.#getSuite());
|
|
107
|
-
/**
|
|
108
|
-
* Show error when mentioned/selected suite does not exist
|
|
109
|
-
*/
|
|
110
|
-
if (!suite) {
|
|
111
|
-
this.logger.error(`The "${this.suite}" suite is not configured inside the "adonisrc.js" file`);
|
|
112
|
-
this.exitCode = 1;
|
|
113
|
-
return;
|
|
114
|
-
}
|
|
115
|
-
/**
|
|
116
|
-
* Generate entity
|
|
117
|
-
*/
|
|
118
|
-
const codemods = await this.createCodemods();
|
|
119
|
-
await codemods.makeUsingStub(stubsRoot, this.stubPath, {
|
|
120
|
-
flags: this.parsed.flags,
|
|
121
|
-
entity: this.app.generators.createEntity(this.name),
|
|
122
|
-
suite: {
|
|
123
|
-
directory: await this.#getSuiteDirectory(suite.directories),
|
|
124
|
-
},
|
|
125
|
-
});
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
__decorate([
|
|
129
|
-
args.string({ description: 'Name of the test file' })
|
|
130
|
-
], MakeTest.prototype, "name", void 0);
|
|
131
|
-
__decorate([
|
|
132
|
-
flags.string({ description: 'The suite for which to create the test file', alias: 's' })
|
|
133
|
-
], MakeTest.prototype, "suite", void 0);
|
|
43
|
+
__decorate([args.string({ description: "Name of the test file" })], MakeTest.prototype, "name", void 0);
|
|
44
|
+
__decorate([flags.string({
|
|
45
|
+
description: "The suite for which to create the test file",
|
|
46
|
+
alias: "s"
|
|
47
|
+
})], MakeTest.prototype, "suite", void 0);
|
|
48
|
+
__decorate([flags.string({ description: "Use the contents of the given file as the generated output" })], MakeTest.prototype, "contentsFrom", void 0);
|
|
49
|
+
export { MakeTest as default };
|
|
@@ -31,6 +31,11 @@ export default class MakeTransformer extends BaseCommand {
|
|
|
31
31
|
* Name of the entity for which to generate the transformer
|
|
32
32
|
*/
|
|
33
33
|
name: string;
|
|
34
|
+
/**
|
|
35
|
+
* Read the contents from this file (if the flag exists) and use
|
|
36
|
+
* it as the raw contents
|
|
37
|
+
*/
|
|
38
|
+
contentsFrom: string;
|
|
34
39
|
/**
|
|
35
40
|
* The stub template file to use for generating the transformer class
|
|
36
41
|
*/
|
|
@@ -1,65 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { t as stubsRoot } from "../../main-kn40V-hF.js";
|
|
2
|
+
import { f as BaseCommand, l as flags, o as args } from "../../main-MBAMnmJb.js";
|
|
3
|
+
import { t as __decorate } from "../../decorate-DmrZA614.js";
|
|
4
|
+
var MakeTransformer = class extends BaseCommand {
|
|
5
|
+
static commandName = "make:transformer";
|
|
6
|
+
static description = "Create a new transformer class";
|
|
7
|
+
static options = { allowUnknownFlags: true };
|
|
8
|
+
stubPath = "make/transformer/main.stub";
|
|
9
|
+
async run() {
|
|
10
|
+
await (await this.createCodemods()).makeUsingStub(stubsRoot, this.stubPath, {
|
|
11
|
+
flags: this.parsed.flags,
|
|
12
|
+
entity: this.app.generators.createEntity(this.name),
|
|
13
|
+
model: this.app.generators.createEntity(this.name)
|
|
14
|
+
}, { contentsFromFile: this.contentsFrom });
|
|
15
|
+
}
|
|
14
16
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
* Command to create a new transformer class.
|
|
19
|
-
* Transformers are used to serialize data objects (like models) into specific
|
|
20
|
-
* formats for API responses, allowing you to control which fields are exposed
|
|
21
|
-
* and how data is structured for clients.
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
* ```
|
|
25
|
-
* ace make:transformer User
|
|
26
|
-
* ace make:transformer Post
|
|
27
|
-
* ace make:transformer ProductTransformer
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export default class MakeTransformer extends BaseCommand {
|
|
31
|
-
/**
|
|
32
|
-
* The command name
|
|
33
|
-
*/
|
|
34
|
-
static commandName = 'make:transformer';
|
|
35
|
-
/**
|
|
36
|
-
* The command description
|
|
37
|
-
*/
|
|
38
|
-
static description = 'Create a new transformer class';
|
|
39
|
-
/**
|
|
40
|
-
* Command options configuration.
|
|
41
|
-
* Allows unknown flags to be passed through.
|
|
42
|
-
*/
|
|
43
|
-
static options = {
|
|
44
|
-
allowUnknownFlags: true,
|
|
45
|
-
};
|
|
46
|
-
/**
|
|
47
|
-
* The stub template file to use for generating the transformer class
|
|
48
|
-
*/
|
|
49
|
-
stubPath = 'make/transformer/main.stub';
|
|
50
|
-
/**
|
|
51
|
-
* Execute the command to create a new transformer class.
|
|
52
|
-
* Generates the transformer file with proper data serialization structure.
|
|
53
|
-
*/
|
|
54
|
-
async run() {
|
|
55
|
-
const codemods = await this.createCodemods();
|
|
56
|
-
await codemods.makeUsingStub(stubsRoot, this.stubPath, {
|
|
57
|
-
flags: this.parsed.flags,
|
|
58
|
-
entity: this.app.generators.createEntity(this.name),
|
|
59
|
-
model: this.app.generators.createEntity(this.name),
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
__decorate([
|
|
64
|
-
args.string({ description: 'Entity name for which to generate the transformer' })
|
|
65
|
-
], MakeTransformer.prototype, "name", void 0);
|
|
17
|
+
__decorate([args.string({ description: "Entity name for which to generate the transformer" })], MakeTransformer.prototype, "name", void 0);
|
|
18
|
+
__decorate([flags.string({ description: "Use the contents of the given file as the generated output" })], MakeTransformer.prototype, "contentsFrom", void 0);
|
|
19
|
+
export { MakeTransformer as default };
|
|
@@ -35,6 +35,11 @@ export default class MakeValidator extends BaseCommand {
|
|
|
35
35
|
* Generate a resource validator with create and update schemas
|
|
36
36
|
*/
|
|
37
37
|
resource: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* Read the contents from this file (if the flag exists) and use
|
|
40
|
+
* it as the raw contents
|
|
41
|
+
*/
|
|
42
|
+
contentsFrom: string;
|
|
38
43
|
/**
|
|
39
44
|
* The stub template file to use for generating the validator
|
|
40
45
|
*/
|
|
@@ -1,81 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { t as stubsRoot } from "../../main-kn40V-hF.js";
|
|
2
|
+
import { f as BaseCommand, l as flags, o as args } from "../../main-MBAMnmJb.js";
|
|
3
|
+
import { t as __decorate } from "../../decorate-DmrZA614.js";
|
|
4
|
+
var MakeValidator = class extends BaseCommand {
|
|
5
|
+
static commandName = "make:validator";
|
|
6
|
+
static description = "Create a new file to define VineJS validators";
|
|
7
|
+
static options = { allowUnknownFlags: true };
|
|
8
|
+
stubPath = "make/validator/main.stub";
|
|
9
|
+
async prepare() {
|
|
10
|
+
if (this.resource) this.stubPath = "make/validator/resource.stub";
|
|
11
|
+
}
|
|
12
|
+
async run() {
|
|
13
|
+
await (await this.createCodemods()).makeUsingStub(stubsRoot, this.stubPath, {
|
|
14
|
+
flags: this.parsed.flags,
|
|
15
|
+
entity: this.app.generators.createEntity(this.name)
|
|
16
|
+
}, { contentsFromFile: this.contentsFrom });
|
|
17
|
+
}
|
|
14
18
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
* Validators define reusable validation schemas for request validation,
|
|
20
|
-
* and can be generated as simple validators or resource-based validators
|
|
21
|
-
* with create and update schemas.
|
|
22
|
-
*
|
|
23
|
-
* @example
|
|
24
|
-
* ```
|
|
25
|
-
* ace make:validator UserValidator
|
|
26
|
-
* ace make:validator PostValidator --resource
|
|
27
|
-
* ace make:validator ContactValidator
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export default class MakeValidator extends BaseCommand {
|
|
31
|
-
/**
|
|
32
|
-
* The command name
|
|
33
|
-
*/
|
|
34
|
-
static commandName = 'make:validator';
|
|
35
|
-
/**
|
|
36
|
-
* The command description
|
|
37
|
-
*/
|
|
38
|
-
static description = 'Create a new file to define VineJS validators';
|
|
39
|
-
/**
|
|
40
|
-
* Command options configuration.
|
|
41
|
-
* Allows unknown flags to be passed through.
|
|
42
|
-
*/
|
|
43
|
-
static options = {
|
|
44
|
-
allowUnknownFlags: true,
|
|
45
|
-
};
|
|
46
|
-
/**
|
|
47
|
-
* The stub template file to use for generating the validator
|
|
48
|
-
*/
|
|
49
|
-
stubPath = 'make/validator/main.stub';
|
|
50
|
-
/**
|
|
51
|
-
* Prepare the command by selecting the appropriate stub based on options.
|
|
52
|
-
* Uses a resource stub when generating validators for CRUD operations.
|
|
53
|
-
*/
|
|
54
|
-
async prepare() {
|
|
55
|
-
/**
|
|
56
|
-
* Use resource stub
|
|
57
|
-
*/
|
|
58
|
-
if (this.resource) {
|
|
59
|
-
this.stubPath = 'make/validator/resource.stub';
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Execute the command to create a new VineJS validator file.
|
|
64
|
-
* Generates the validator with the appropriate stub template.
|
|
65
|
-
*/
|
|
66
|
-
async run() {
|
|
67
|
-
const codemods = await this.createCodemods();
|
|
68
|
-
await codemods.makeUsingStub(stubsRoot, this.stubPath, {
|
|
69
|
-
flags: this.parsed.flags,
|
|
70
|
-
entity: this.app.generators.createEntity(this.name),
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
__decorate([
|
|
75
|
-
args.string({ description: 'Name of the validator file' })
|
|
76
|
-
], MakeValidator.prototype, "name", void 0);
|
|
77
|
-
__decorate([
|
|
78
|
-
flags.boolean({
|
|
79
|
-
description: 'Create a file with pre-defined validators for create and update actions',
|
|
80
|
-
})
|
|
81
|
-
], MakeValidator.prototype, "resource", void 0);
|
|
19
|
+
__decorate([args.string({ description: "Name of the validator file" })], MakeValidator.prototype, "name", void 0);
|
|
20
|
+
__decorate([flags.boolean({ description: "Create a file with pre-defined validators for create and update actions" })], MakeValidator.prototype, "resource", void 0);
|
|
21
|
+
__decorate([flags.string({ description: "Use the contents of the given file as the generated output" })], MakeValidator.prototype, "contentsFrom", void 0);
|
|
22
|
+
export { MakeValidator as default };
|
|
@@ -25,6 +25,11 @@ export default class MakeView extends BaseCommand {
|
|
|
25
25
|
* Name of the template file to create
|
|
26
26
|
*/
|
|
27
27
|
name: string;
|
|
28
|
+
/**
|
|
29
|
+
* Read the contents from this file (if the flag exists) and use
|
|
30
|
+
* it as the raw contents
|
|
31
|
+
*/
|
|
32
|
+
contentsFrom: string;
|
|
28
33
|
/**
|
|
29
34
|
* The stub template file to use for generating the Edge template
|
|
30
35
|
*/
|
|
@@ -1,57 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
import { t as stubsRoot } from "../../main-kn40V-hF.js";
|
|
2
|
+
import { f as BaseCommand, l as flags, o as args } from "../../main-MBAMnmJb.js";
|
|
3
|
+
import { t as __decorate } from "../../decorate-DmrZA614.js";
|
|
4
|
+
var MakeView = class extends BaseCommand {
|
|
5
|
+
static commandName = "make:view";
|
|
6
|
+
static description = "Create a new Edge.js template file";
|
|
7
|
+
stubPath = "make/view/main.stub";
|
|
8
|
+
async run() {
|
|
9
|
+
await (await this.createCodemods()).makeUsingStub(stubsRoot, this.stubPath, {
|
|
10
|
+
flags: this.parsed.flags,
|
|
11
|
+
entity: this.app.generators.createEntity(this.name)
|
|
12
|
+
}, { contentsFromFile: this.contentsFrom });
|
|
13
|
+
}
|
|
14
14
|
};
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
* Command to create a new Edge.js template file.
|
|
19
|
-
* Edge templates are used for rendering HTML views in your web application,
|
|
20
|
-
* supporting layouts, partials, components, and template inheritance.
|
|
21
|
-
*
|
|
22
|
-
* @example
|
|
23
|
-
* ```
|
|
24
|
-
* ace make:view home
|
|
25
|
-
* ace make:view users/profile
|
|
26
|
-
* ace make:view components/navbar
|
|
27
|
-
* ace make:view layouts/app
|
|
28
|
-
* ```
|
|
29
|
-
*/
|
|
30
|
-
export default class MakeView extends BaseCommand {
|
|
31
|
-
/**
|
|
32
|
-
* The command name
|
|
33
|
-
*/
|
|
34
|
-
static commandName = 'make:view';
|
|
35
|
-
/**
|
|
36
|
-
* The command description
|
|
37
|
-
*/
|
|
38
|
-
static description = 'Create a new Edge.js template file';
|
|
39
|
-
/**
|
|
40
|
-
* The stub template file to use for generating the Edge template
|
|
41
|
-
*/
|
|
42
|
-
stubPath = 'make/view/main.stub';
|
|
43
|
-
/**
|
|
44
|
-
* Execute the command to create a new Edge.js template file.
|
|
45
|
-
* Generates the template file in the views directory.
|
|
46
|
-
*/
|
|
47
|
-
async run() {
|
|
48
|
-
const codemods = await this.createCodemods();
|
|
49
|
-
await codemods.makeUsingStub(stubsRoot, this.stubPath, {
|
|
50
|
-
flags: this.parsed.flags,
|
|
51
|
-
entity: this.app.generators.createEntity(this.name),
|
|
52
|
-
});
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
__decorate([
|
|
56
|
-
args.string({ description: 'Name of the template' })
|
|
57
|
-
], MakeView.prototype, "name", void 0);
|
|
15
|
+
__decorate([args.string({ description: "Name of the template" })], MakeView.prototype, "name", void 0);
|
|
16
|
+
__decorate([flags.string({ description: "Use the contents of the given file as the generated output" })], MakeView.prototype, "contentsFrom", void 0);
|
|
17
|
+
export { MakeView as default };
|
package/build/commands/repl.js
CHANGED
|
@@ -1,50 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
* ace repl
|
|
19
|
-
* ```
|
|
20
|
-
*/
|
|
21
|
-
export default class ReplCommand extends BaseCommand {
|
|
22
|
-
/**
|
|
23
|
-
* The command name
|
|
24
|
-
*/
|
|
25
|
-
static commandName = 'repl';
|
|
26
|
-
/**
|
|
27
|
-
* The command description
|
|
28
|
-
*/
|
|
29
|
-
static description = 'Start a new REPL session';
|
|
30
|
-
/**
|
|
31
|
-
* Command options configuration.
|
|
32
|
-
* Requires the application to be started and keeps the process alive.
|
|
33
|
-
*/
|
|
34
|
-
static options = {
|
|
35
|
-
startApp: true,
|
|
36
|
-
staysAlive: true,
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* Execute the command to start the REPL server.
|
|
40
|
-
* Creates a REPL instance from the container and sets up an exit handler
|
|
41
|
-
* that properly terminates the application when the REPL session ends.
|
|
42
|
-
*/
|
|
43
|
-
async run() {
|
|
44
|
-
const repl = await this.app.container.make('repl');
|
|
45
|
-
repl.start();
|
|
46
|
-
repl.server.on('exit', async () => {
|
|
47
|
-
await this.terminate();
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
}
|
|
1
|
+
import { f as BaseCommand } from "../main-MBAMnmJb.js";
|
|
2
|
+
var ReplCommand = class extends BaseCommand {
|
|
3
|
+
static commandName = "repl";
|
|
4
|
+
static description = "Start a new REPL session";
|
|
5
|
+
static options = {
|
|
6
|
+
startApp: true,
|
|
7
|
+
staysAlive: true
|
|
8
|
+
};
|
|
9
|
+
async run() {
|
|
10
|
+
const repl = await this.app.container.make("repl");
|
|
11
|
+
repl.start();
|
|
12
|
+
repl.server.on("exit", async () => {
|
|
13
|
+
await this.terminate();
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
export { ReplCommand as default };
|