create-colonel 1.0.0 → 1.1.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 +7 -0
- package/package.json +1 -1
- package/template/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Scaffold a new Colonel app from the command line.
|
|
4
4
|
|
|
5
|
+
## Why Users Like It
|
|
6
|
+
|
|
7
|
+
- scaffolds a working app with practical defaults
|
|
8
|
+
- includes middleware and validation-ready patterns out of the box
|
|
9
|
+
- keeps generated structure aligned with docs and framework conventions
|
|
10
|
+
- supports a simple default flow plus optional `--skip-install`
|
|
11
|
+
|
|
5
12
|
[](https://www.npmjs.com/package/create-colonel)
|
|
6
13
|
[](../../LICENSE)
|
|
7
14
|
[](https://bun.sh)
|
package/package.json
CHANGED
package/template/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "colonel-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": true,
|
|
6
6
|
"scripts": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"upgrade:colonel": "bun add @coloneldev/framework@latest"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@coloneldev/framework": "^1.0.
|
|
11
|
+
"@coloneldev/framework": "^1.0.2",
|
|
12
12
|
"ejs": "^5.0.1"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|