create-next-pro-cli 0.1.10 → 0.1.11
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/.husky/commit-msg +2 -0
- package/.husky/pre-commit +2 -0
- package/README.md +10 -4
- package/commitlint.config.cjs +12 -0
- package/package.json +24 -3
- package/.vscode/settings.json +0 -3
- /package/{LICENSE.md → LICENSE} +0 -0
package/README.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+
|
|
7
|
+

|
|
8
|
+

|
|
9
|
+

|
|
10
|
+
|
|
4
11
|

|
|
5
|
-

|
|
6
|
-

|
|
12
|
+

|
|
13
|
+
[](https://www.conventionalcommits.org/en/v1.0.0/)
|
|
8
14
|
|
|
9
15
|
> ⚠️ This project is under active development and currently in beta testing. Not all features are implemented yet, and contributions are welcome!
|
|
10
16
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/** @type {import('@commitlint/types').UserConfig} */
|
|
2
|
+
module.exports = {
|
|
3
|
+
extends: ["@commitlint/config-conventional"],
|
|
4
|
+
rules: {
|
|
5
|
+
// subject free (no Upper/Start/Pascal)
|
|
6
|
+
"subject-case": [
|
|
7
|
+
2,
|
|
8
|
+
"never",
|
|
9
|
+
["sentence-case", "start-case", "pascal-case", "upper-case"],
|
|
10
|
+
],
|
|
11
|
+
},
|
|
12
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-next-pro-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Advanced Next.js project scaffolder with i18n, Tailwind, App Router and more.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,20 @@
|
|
|
15
15
|
"scripts": {
|
|
16
16
|
"dev": "bun run bin.ts",
|
|
17
17
|
"scaffold-dev": "bun run src/scaffold-dev.ts",
|
|
18
|
-
"postinstall": "bash install.sh"
|
|
18
|
+
"postinstall": "bash install.sh",
|
|
19
|
+
"commit": "cz",
|
|
20
|
+
"release": "bunx --bun standard-version",
|
|
21
|
+
"prepare-husky": "husky"
|
|
22
|
+
},
|
|
23
|
+
"config": {
|
|
24
|
+
"commitizen": {
|
|
25
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"lint-staged": {
|
|
29
|
+
"*.{js,ts,tsx,md,css,json}": [
|
|
30
|
+
"prettier --write"
|
|
31
|
+
]
|
|
19
32
|
},
|
|
20
33
|
"keywords": [
|
|
21
34
|
"nextjs",
|
|
@@ -30,6 +43,14 @@
|
|
|
30
43
|
"prompts": "^2.4.2"
|
|
31
44
|
},
|
|
32
45
|
"devDependencies": {
|
|
33
|
-
"@
|
|
46
|
+
"@commitlint/cli": "^19.8.1",
|
|
47
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
48
|
+
"@types/prompts": "^2.4.9",
|
|
49
|
+
"commitizen": "^4.3.1",
|
|
50
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
51
|
+
"husky": "^9.1.7",
|
|
52
|
+
"lint-staged": "^16.1.5",
|
|
53
|
+
"prettier": "^3.6.2",
|
|
54
|
+
"standard-version": "^9.5.0"
|
|
34
55
|
}
|
|
35
56
|
}
|
package/.vscode/settings.json
DELETED
/package/{LICENSE.md → LICENSE}
RENAMED
|
File without changes
|