@expressots/cli 3.0.0-beta.4 → 3.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/bin/cli.d.ts +1 -1
- package/bin/cli.js +1 -1
- package/bin/new/form.js +1 -1
- package/package.json +3 -3
package/bin/cli.d.ts
CHANGED
package/bin/cli.js
CHANGED
|
@@ -22,7 +22,7 @@ const scripts_1 = require("./scripts");
|
|
|
22
22
|
* The current version of the ExpressoTS Bundle.
|
|
23
23
|
* core, adapters, and cli.
|
|
24
24
|
*/
|
|
25
|
-
exports.BUNDLE_VERSION = "3.0.0
|
|
25
|
+
exports.BUNDLE_VERSION = "3.0.0";
|
|
26
26
|
process_1.stdout.write(`\n${[chalk_1.default.bold.green("🐎 Expressots")]}\n\n`);
|
|
27
27
|
(0, yargs_1.default)((0, helpers_1.hideBin)(process.argv))
|
|
28
28
|
.scriptName("expressots")
|
package/bin/new/form.js
CHANGED
|
@@ -185,7 +185,7 @@ const projectForm = async (projectName, args) => {
|
|
|
185
185
|
const [_, template] = answer.template.match(/(.*) ::/);
|
|
186
186
|
const repo = `expressots/templates/${templates[template]}#${cli_1.BUNDLE_VERSION}`;
|
|
187
187
|
try {
|
|
188
|
-
const emitter = (0, degit_1.default)(
|
|
188
|
+
const emitter = (0, degit_1.default)(repo);
|
|
189
189
|
await emitter.clone(answer.name);
|
|
190
190
|
}
|
|
191
191
|
catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expressots/cli",
|
|
3
|
-
"version": "3.0.0
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)",
|
|
5
5
|
"author": "Richard Zampieri",
|
|
6
6
|
"license": "MIT",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@codecov/vite-plugin": "0.0.1-beta.9",
|
|
66
66
|
"@commitlint/cli": "19.2.1",
|
|
67
67
|
"@commitlint/config-conventional": "19.1.0",
|
|
68
|
-
"@expressots/shared": "3.0.0
|
|
68
|
+
"@expressots/shared": "3.0.0",
|
|
69
69
|
"@release-it/conventional-changelog": "7.0.2",
|
|
70
70
|
"@types/chalk-animation": "1.6.1",
|
|
71
71
|
"@types/cli-progress": "3.11.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
},
|
|
93
93
|
"release-it": {
|
|
94
94
|
"git": {
|
|
95
|
-
"commitMessage": "chore: release
|
|
95
|
+
"commitMessage": "chore: release ${version}"
|
|
96
96
|
},
|
|
97
97
|
"github": {
|
|
98
98
|
"release": true
|