@crab-dev/wake 0.1.22 → 0.1.23
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/CHANGELOG.md +21 -0
- package/package.json +14 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.23
|
|
4
|
+
|
|
5
|
+
- Made Yarn 4.16 PnP authoritative for package visibility, alias dependencies, peer/virtual packages,
|
|
6
|
+
ignore patterns, nested roots, compressed zip archives, watch invalidation, and structured resolver
|
|
7
|
+
diagnostics; PnP rejection can no longer be overridden by Wake aliases, `node_modules`, or the
|
|
8
|
+
retired Components fallback.
|
|
9
|
+
- Migrated the source repository and VS Code editor to one strict Yarn PnP workspace/lock, with
|
|
10
|
+
PnP-aware embedded dependency and maintenance tooling plus differential `pnpapi` conformance gates.
|
|
11
|
+
- Kept npm `node_modules` projects as a first-class resolver contract, including workspace links and
|
|
12
|
+
package-lock watch invalidation, and added blocking Windows/Linux Node 22.14/26 `npm ci` consumer
|
|
13
|
+
gates built exclusively from the current local tarballs.
|
|
14
|
+
- Moved private Wake Docs generated imports to a non-package alias namespace so Yarn PnP remains
|
|
15
|
+
authoritative for valid bare package names without intercepting internal runtime modules.
|
|
16
|
+
- Kept absolute issuers outside a PnP root on classic npm resolution, and made Wake Test resolve
|
|
17
|
+
React package metadata through the same issuer-owned PnP/npm environment as executable modules.
|
|
18
|
+
- Made the pinned Corepack bootstrap overwrite preinstalled Windows shims consistently across CI,
|
|
19
|
+
release, and VS Code workflows.
|
|
20
|
+
- Made npm 11/12 consumer locks include every optional platform locator from local artifacts before
|
|
21
|
+
`npm ci --omit=optional`, while still loading only the matching native package at runtime, and
|
|
22
|
+
invoke the installed CLI without the removed `npx --no-install` behavior.
|
|
23
|
+
|
|
3
24
|
## 0.1.22
|
|
4
25
|
|
|
5
26
|
- Added the experimental Wake-native, React-first `wake test` system, `runTests()` and `TestContext`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crab-dev/wake",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Wake native web build tools for Node.js",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -38,9 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"./package.json": "./package.json"
|
|
40
40
|
},
|
|
41
|
-
"bin":
|
|
42
|
-
"wake": "./bin/wake.mjs"
|
|
43
|
-
},
|
|
41
|
+
"bin": "./bin/wake.mjs",
|
|
44
42
|
"napi": {
|
|
45
43
|
"binaryName": "wake"
|
|
46
44
|
},
|
|
@@ -66,7 +64,7 @@
|
|
|
66
64
|
"node": ">=22.14 <27"
|
|
67
65
|
},
|
|
68
66
|
"dependencies": {
|
|
69
|
-
"@crab-dev/css": "0.1.
|
|
67
|
+
"@crab-dev/css": "0.1.23",
|
|
70
68
|
"@crab-dev/rc-alert": "^0.0.2",
|
|
71
69
|
"@crab-dev/rc-button": "^0.0.2",
|
|
72
70
|
"@crab-dev/rc-dialog": "^0.0.2",
|
|
@@ -90,12 +88,18 @@
|
|
|
90
88
|
"react": ">=19.2.8 <19.3.0",
|
|
91
89
|
"react-dom": ">=19.2.8 <19.3.0"
|
|
92
90
|
},
|
|
91
|
+
"devDependencies": {
|
|
92
|
+
"@types/react": "19.2.18",
|
|
93
|
+
"@types/react-dom": "19.2.4",
|
|
94
|
+
"react": "19.2.8",
|
|
95
|
+
"react-dom": "19.2.8"
|
|
96
|
+
},
|
|
93
97
|
"optionalDependencies": {
|
|
94
|
-
"@crab-dev/wake-darwin-arm64": "0.1.
|
|
95
|
-
"@crab-dev/wake-darwin-x64": "0.1.
|
|
96
|
-
"@crab-dev/wake-linux-arm64-gnu": "0.1.
|
|
97
|
-
"@crab-dev/wake-linux-x64-gnu": "0.1.
|
|
98
|
-
"@crab-dev/wake-win32-x64-msvc": "0.1.
|
|
98
|
+
"@crab-dev/wake-darwin-arm64": "0.1.23",
|
|
99
|
+
"@crab-dev/wake-darwin-x64": "0.1.23",
|
|
100
|
+
"@crab-dev/wake-linux-arm64-gnu": "0.1.23",
|
|
101
|
+
"@crab-dev/wake-linux-x64-gnu": "0.1.23",
|
|
102
|
+
"@crab-dev/wake-win32-x64-msvc": "0.1.23"
|
|
99
103
|
},
|
|
100
104
|
"publishConfig": {
|
|
101
105
|
"access": "public",
|