@crab-dev/wake 0.1.14 → 0.1.15
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 +7 -0
- package/README.md +11 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.15
|
|
4
|
+
|
|
5
|
+
- Preserved explicitly unset component Props, non-default Args, selected demos, and viewport state across copied URLs, refreshes, and browser navigation.
|
|
6
|
+
- Recovered component previews after control changes or resets and reported React render errors and unhandled promise rejections in the workbench.
|
|
7
|
+
- Prevented the Windows CLI and Node-API library from racing to write the same debug PDB during workspace builds.
|
|
8
|
+
- Added complete stable and experimental Node.js API references, restored versioned engineering documentation, and enforced documentation routes and links in CI.
|
|
9
|
+
|
|
3
10
|
## 0.1.14
|
|
4
11
|
|
|
5
12
|
- Rebuilt the Components workbench with published Crab UI controls, responsive drawers, compact toolbars, source dialogs, and mobile-first layouts.
|
package/README.md
CHANGED
|
@@ -22,6 +22,17 @@ Compiler primitives are intentionally isolated under
|
|
|
22
22
|
`@crab-dev/wake/experimental`. A `ParsedModule` is an opaque, disposable
|
|
23
23
|
native handle and cannot be cloned, persisted, or transferred to a Worker.
|
|
24
24
|
|
|
25
|
+
The stable API also includes in-memory `bundle()`, incremental
|
|
26
|
+
`createBuildContext()`, documentation builds and development servers. Build
|
|
27
|
+
and server operations accept `AbortSignal`; long-lived contexts and servers
|
|
28
|
+
support explicit close methods and JavaScript disposal protocols.
|
|
29
|
+
|
|
30
|
+
Full documentation:
|
|
31
|
+
|
|
32
|
+
- [Node.js API](https://github.com/hotlif/wake/blob/canary/docs/reference/node-api.mdx)
|
|
33
|
+
- [Experimental API](https://github.com/hotlif/wake/blob/canary/docs/reference/experimental-api.mdx)
|
|
34
|
+
- [CLI reference](https://github.com/hotlif/wake/blob/canary/docs/reference/cli.mdx)
|
|
35
|
+
|
|
25
36
|
Wake supports Node.js 22.14 through 26 on Windows x64, Linux glibc x64/arm64,
|
|
26
37
|
and macOS x64/arm64. Installing the package never compiles Rust code and does
|
|
27
38
|
not run a postinstall script.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crab-dev/wake",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Wake native web build tools for Node.js",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
"react-dom": "^19.2.8"
|
|
68
68
|
},
|
|
69
69
|
"optionalDependencies": {
|
|
70
|
-
"@crab-dev/wake-darwin-arm64": "0.1.
|
|
71
|
-
"@crab-dev/wake-darwin-x64": "0.1.
|
|
72
|
-
"@crab-dev/wake-linux-arm64-gnu": "0.1.
|
|
73
|
-
"@crab-dev/wake-linux-x64-gnu": "0.1.
|
|
74
|
-
"@crab-dev/wake-win32-x64-msvc": "0.1.
|
|
70
|
+
"@crab-dev/wake-darwin-arm64": "0.1.15",
|
|
71
|
+
"@crab-dev/wake-darwin-x64": "0.1.15",
|
|
72
|
+
"@crab-dev/wake-linux-arm64-gnu": "0.1.15",
|
|
73
|
+
"@crab-dev/wake-linux-x64-gnu": "0.1.15",
|
|
74
|
+
"@crab-dev/wake-win32-x64-msvc": "0.1.15"
|
|
75
75
|
},
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public",
|