@devflow-tools/plugin-nextjs 0.3.2 → 0.4.0

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.
Files changed (2) hide show
  1. package/README.md +20 -0
  2. package/package.json +3 -3
package/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # @devflow-tools/plugin-nextjs
2
+
3
+ Next.js expert plugin for DevFlow — App Router, SSR/SSG/ISR, Server Components, Middleware, and deployment.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install @devflow-tools/plugin-nextjs
9
+ ```
10
+
11
+ ## Workflows
12
+
13
+ | Workflow | Description |
14
+ |----------|-------------|
15
+ | `nextjs:new-page` | Create Next.js pages (route + data fetching + rendering strategy) |
16
+ | `nextjs:diagnose-bug` | Diagnose Next.js bugs from error type to fix |
17
+
18
+ ## License
19
+
20
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/plugin-nextjs",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "clean": "rm -rf dist"
18
18
  },
19
19
  "dependencies": {
20
- "@devflow-tools/sdk": "^0.3.2"
20
+ "@devflow-tools/sdk": "^0.4.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "typescript": "^5.5.0",
@@ -26,5 +26,5 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "8bd4fe5d195782d3e5a5357fc9bff5998561c956"
29
+ "gitHead": "c76bcf3a2bb8ac12b871738d6661979eb45090c6"
30
30
  }