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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env sh
2
+ bunx --bun commitlint --edit "$1"
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env sh
2
+ bunx --bun lint-staged
package/README.md CHANGED
@@ -1,10 +1,16 @@
1
1
  ![create-next-pro logo](./public/logo.svg)
2
2
 
3
- ![npm version](https://img.shields.io/npm/v/create-next-pro-cli?label=npm%20version)
3
+ ![npm](https://img.shields.io/npm/v/create-next-pro-cli?logo=npm&color=orange)
4
+ ![npm dependencies](https://img.shields.io/librariesio/release/npm/create-next-pro-cli?logo=npm)
5
+ ![npm downloads](https://img.shields.io/npm/dw/create-next-pro-cli?logo=npm)
6
+
7
+ ![GitHub](https://img.shields.io/github/stars/Rising-Corporation/create-next-pro-cli?style=social&logo=github)
8
+ ![GitHub forks](https://img.shields.io/github/forks/Rising-Corporation/create-next-pro-cli?style=social&logo=github)
9
+ ![GitHub issues](https://img.shields.io/github/issues/Rising-Corporation/create-next-pro-cli?logo=github)
10
+
4
11
  ![status](https://img.shields.io/badge/status-beta-orange)
5
- ![license](https://img.shields.io/github/license/Rising-Corporation/create-next-pro-cli)
6
- ![dependencies](https://img.shields.io/librariesio/release/npm/create-next-pro-cli)
7
- ![downloads](https://img.shields.io/npm/dw/create-next-pro-cli)
12
+ ![license](https://img.shields.io/github/license/Rising-Corporation/create-next-pro-cli?logo=open-source-initiative&logoColor=white)
13
+ [![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-blue.svg?logo=conventionalcommits)](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.10",
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
- "@types/prompts": "^2.4.9"
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
  }
@@ -1,3 +0,0 @@
1
- {
2
- "typescript.tsdk": "node_modules/typescript/lib"
3
- }
File without changes