@runderworld/next.js-patches 16.2.5 → 16.2.7
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 +38 -0
- package/package.json +3 -3
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @runderworld/next.js-patches
|
|
2
|
+
|
|
3
|
+
Dist-level patch overlay for **Next.js v16.2.7** — variant `fix-node-options-v16-2`.
|
|
4
|
+
|
|
5
|
+
This package is published automatically by the patch automation pipeline and contains a single `dist.patch` file that can be applied on top of a matching Next.js install.
|
|
6
|
+
|
|
7
|
+
## Getting Started
|
|
8
|
+
|
|
9
|
+
### Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install @runderworld/next.js-patches@16.2.7
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Apply the patch
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
patch -p1 -d node_modules/next < node_modules/@runderworld/next.js-patches/dist.patch
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
> **Note:** This patch targets Next.js `v16.2.7`. Make sure your installed version of `next` matches before applying.
|
|
22
|
+
|
|
23
|
+
## What's included
|
|
24
|
+
|
|
25
|
+
| File | Description |
|
|
26
|
+
|------|-------------|
|
|
27
|
+
| `dist.patch` | Unified diff of patched `next/dist/` output vs the upstream `v16.2.7` release |
|
|
28
|
+
|
|
29
|
+
## Variant
|
|
30
|
+
|
|
31
|
+
- **Upstream tag:** `v16.2.7`
|
|
32
|
+
- **Patch name:** `fix-node-options-v16-2`
|
|
33
|
+
- **Package version:** `16.2.7`
|
|
34
|
+
|
|
35
|
+
## Source
|
|
36
|
+
|
|
37
|
+
Patch artifacts are generated and published from [runderworld/next.js-patches](https://github.com/runderworld/next.js-patches).
|
|
38
|
+
All patches are fingerprinted, version-locked, and reproducible.
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runderworld/next.js-patches",
|
|
3
|
-
"version": "16.2.
|
|
4
|
-
"description": "Dist patch overlay for Next.js v16.2.
|
|
3
|
+
"version": "16.2.7",
|
|
4
|
+
"description": "Dist patch overlay for Next.js v16.2.7 with fix-node-options-v16-2",
|
|
5
5
|
"main": "dist.patch",
|
|
6
|
-
"files": ["dist.patch"],
|
|
6
|
+
"files": ["dist.patch", "README.md"],
|
|
7
7
|
"keywords": ["next.js", "patch", "dist", "overlay", "enterprise"],
|
|
8
8
|
"author": "runderworld",
|
|
9
9
|
"license": "MIT",
|