create-pnpm-custom-app 1.0.0 → 1.0.2

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 CHANGED
@@ -17,18 +17,28 @@
17
17
 
18
18
  ## Quick Start
19
19
 
20
+ ### Recommended: Use npx (always latest version)
21
+
20
22
  ```bash
21
- # Using npx (recommended)
22
- npx create-pnpm-custom-app my-project
23
+ npx create-pnpm-custom-app@latest my-project
24
+ ```
23
25
 
24
- # Or with pnpm
25
- pnpm create pnpm-custom-app my-project
26
+ ### Alternative: Global Installation
27
+
28
+ ```bash
29
+ # Install globally
30
+ npm install -g create-pnpm-custom-app
26
31
 
27
- # Or install globally
28
- pnpm add -g create-pnpm-custom-app
32
+ # Use anywhere
29
33
  create-pnpm-custom-app my-project
30
34
  ```
31
35
 
36
+ ### With pnpm
37
+
38
+ ```bash
39
+ pnpm create pnpm-custom-app my-project
40
+ ```
41
+
32
42
  ## Project Structure
33
43
 
34
44
  ```txt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pnpm-custom-app",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A professional CLI to scaffold full-stack monorepo projects with Next.js, Fastify, and pnpm workspaces",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "clsx": "^2.1.1",
13
- "next": "^16.1.1",
13
+ "next": "^16.1.4",
14
14
  "next-intl": "^4.7.0",
15
15
  "react": "^19.0.0",
16
16
  "react-dom": "^19.0.0",
@@ -23,7 +23,7 @@
23
23
  "@types/react": "^19.0.9",
24
24
  "@types/react-dom": "^19.0.4",
25
25
  "eslint": "^9.18.0",
26
- "eslint-config-next": "^16.1.1",
26
+ "eslint-config-next": "^16.1.4",
27
27
  "prettier": "^3.4.2",
28
28
  "tailwindcss": "^4.1.14",
29
29
  "typescript": "^5.7.3"
@@ -1,51 +0,0 @@
1
- {
2
- "editor.formatOnSave": true,
3
- "editor.defaultFormatter": "esbenp.prettier-vscode",
4
- "editor.codeActionsOnSave": {
5
- "source.fixAll.eslint": "explicit"
6
- },
7
- "typescript.tsdk": "node_modules/typescript/lib",
8
- "typescript.enablePromptUseWorkspaceTsdk": true,
9
- "files.associations": {
10
- "*.css": "tailwindcss"
11
- },
12
- "tailwindCSS.experimental.classRegex": [
13
- ["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
14
- ],
15
- "editor.quickSuggestions": {
16
- "strings": "on"
17
- },
18
- "files.exclude": {
19
- "**/.git": true,
20
- "**/.DS_Store": true,
21
- "**/node_modules": true,
22
- "**/.next": true,
23
- "**/dist": true,
24
- "**/build": true
25
- },
26
- "search.exclude": {
27
- "**/node_modules": true,
28
- "**/.next": true,
29
- "**/dist": true,
30
- "**/build": true,
31
- "**/pnpm-lock.yaml": true
32
- },
33
- "[typescript]": {
34
- "editor.defaultFormatter": "esbenp.prettier-vscode"
35
- },
36
- "[typescriptreact]": {
37
- "editor.defaultFormatter": "esbenp.prettier-vscode"
38
- },
39
- "[javascript]": {
40
- "editor.defaultFormatter": "esbenp.prettier-vscode"
41
- },
42
- "[json]": {
43
- "editor.defaultFormatter": "esbenp.prettier-vscode"
44
- },
45
- "eslint.validate": [
46
- "javascript",
47
- "javascriptreact",
48
- "typescript",
49
- "typescriptreact"
50
- ]
51
- }