@crab-dev/wake 0.1.13 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +11 -0
  3. package/package.json +28 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
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
+
10
+ ## 0.1.14
11
+
12
+ - Rebuilt the Components workbench with published Crab UI controls, responsive drawers, compact toolbars, source dialogs, and mobile-first layouts.
13
+ - Changed the default documentation locale to Simplified Chinese while preserving explicit English configuration.
14
+ - Updated the React documentation fixture to consume the published Crab Button package and use Chinese-first content.
15
+
3
16
  ## 0.1.13
4
17
 
5
18
  - Preserved complete function parameter lists during production minification, preventing undefined bindings in Motion and Framer Motion bundles.
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.13",
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": {
@@ -44,12 +44,34 @@
44
44
  "engines": {
45
45
  "node": ">=22.14 <27"
46
46
  },
47
+ "dependencies": {
48
+ "@crab-dev/rc-alert": "^0.0.2",
49
+ "@crab-dev/rc-button": "^0.0.2",
50
+ "@crab-dev/rc-dialog": "^0.0.2",
51
+ "@crab-dev/rc-drawer": "^0.0.2",
52
+ "@crab-dev/rc-empty": "^0.0.2",
53
+ "@crab-dev/rc-line-edit": "^0.0.4",
54
+ "@crab-dev/rc-number-edit": "^0.0.2",
55
+ "@crab-dev/rc-segmented": "^0.0.2",
56
+ "@crab-dev/rc-select": "^0.0.3",
57
+ "@crab-dev/rc-switch": "^0.0.2",
58
+ "@crab-dev/rc-tag": "^0.0.2",
59
+ "@crab-dev/rc-text-edit": "^0.0.1",
60
+ "@crab-dev/rc-tooltip": "^0.0.2",
61
+ "@crab-dev/rc-tree": "^0.1.2",
62
+ "@linaria/core": "^8.1.1",
63
+ "lucide-react": "^1.23.0"
64
+ },
65
+ "peerDependencies": {
66
+ "react": "^19.2.8",
67
+ "react-dom": "^19.2.8"
68
+ },
47
69
  "optionalDependencies": {
48
- "@crab-dev/wake-darwin-arm64": "0.1.13",
49
- "@crab-dev/wake-darwin-x64": "0.1.13",
50
- "@crab-dev/wake-linux-arm64-gnu": "0.1.13",
51
- "@crab-dev/wake-linux-x64-gnu": "0.1.13",
52
- "@crab-dev/wake-win32-x64-msvc": "0.1.13"
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"
53
75
  },
54
76
  "publishConfig": {
55
77
  "access": "public",