skeleton-crew-runtime 0.3.4 → 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.
- package/README.md +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
|
-
# Skeleton Crew Runtime v0.
|
|
1
|
+
# Skeleton Crew Runtime v0.4.0
|
|
2
2
|
|
|
3
3
|
**A minimal plugin runtime for building modular JavaScript applications.**
|
|
4
4
|
|
|
5
5
|
Stop wiring up infrastructure. Start building features.
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install skeleton-crew-runtime@^0.
|
|
8
|
+
npm install skeleton-crew-runtime@^0.4.0
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
## What's New in v0.4.0
|
|
12
|
+
|
|
13
|
+
✅ **Browser Compatibility** - Native browser support with zero Node.js polyfills required
|
|
14
|
+
🔧 **Architecture** - Decoupled file system logic via Dependency Injection
|
|
15
|
+
📦 **Conditional Exports** - Automatic entry point resolution for Node.js vs Browser
|
|
16
|
+
|
|
17
|
+
**[→ Complete v0.4.0 Features](CHANGELOG.md#034---2026-01-24)**
|
|
18
|
+
|
|
11
19
|
## What's New in v0.3.3
|
|
12
20
|
|
|
13
21
|
✅ **Browser Compatibility** - Fixed critical runtime crash in browsers by lazy-loading Node.js dependencies
|