create-arkos 1.2.14-beta → 1.2.15-beta
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 -5
- package/dist/utils/template-compiler.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ The official CLI tool to quickly scaffold new Arkos.js API projects with interac
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
`create-arkos` is the scaffolding tool for the Arkos.js framework
|
|
7
|
+
`create-arkos` is the scaffolding tool for the Arkos.js framework. It provides an interactive setup experience to generate a complete, production-ready RESTful API project with automatic CRUD operations, authentication, validation, and more - all built on top of Express.js and Prisma.
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -176,10 +176,6 @@ arkos generate component-name -m model-name # generate components like controlle
|
|
|
176
176
|
- **GitHub**: [uanela/arkos](https://github.com/uanela/arkos)
|
|
177
177
|
- **WhatsApp Community**: [Join our WhatsApp group](https://chat.whatsapp.com/EJ8cjb9hxau0EcOnI4fdpD)
|
|
178
178
|
|
|
179
|
-
## Version
|
|
180
|
-
|
|
181
|
-
Arkos.js version used on this `create-arkos` cli: v1.2.14-beta
|
|
182
|
-
|
|
183
179
|
## License
|
|
184
180
|
|
|
185
181
|
MIT License
|
|
@@ -100,7 +100,7 @@ class TemplateCompiler {
|
|
|
100
100
|
else if (dirent.name.endsWith(".hbs")) {
|
|
101
101
|
const templatePath = fullPath;
|
|
102
102
|
const template = handlebars_1.default.compile(fs_1.default.readFileSync(templatePath, "utf8"));
|
|
103
|
-
let arkosCurrentVersion = "1.2.
|
|
103
|
+
let arkosCurrentVersion = "1.2.15-beta";
|
|
104
104
|
const content = template({ ...config, arkosCurrentVersion });
|
|
105
105
|
const ext = isTypescript ? ".ts" : ".js";
|
|
106
106
|
let outputPath = path_1.default.join(outputDir, relativePath.replace(".hbs", ""));
|