@coherent.js/adapters 1.0.0-beta.3 → 1.0.0-beta.6
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 +16 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -14,6 +14,22 @@ Framework adapters for Coherent.js, providing seamless integration with popular
|
|
|
14
14
|
npm install @coherent.js/adapters
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
|
|
18
|
+
## Exports
|
|
19
|
+
|
|
20
|
+
Framework adapters
|
|
21
|
+
|
|
22
|
+
### Modular Imports (Tree-Shakable)
|
|
23
|
+
|
|
24
|
+
- Adapter utilities: `@coherent.js/adapters`
|
|
25
|
+
|
|
26
|
+
### Example Usage
|
|
27
|
+
|
|
28
|
+
```javascript
|
|
29
|
+
import { createAdapter } from '@coherent.js/adapters';
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
> **Note**: All exports are tree-shakable. Import only what you need for optimal bundle size.
|
|
17
33
|
## Usage
|
|
18
34
|
|
|
19
35
|
### Astro Integration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coherent.js/adapters",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.6",
|
|
4
4
|
"description": "Framework adapters for Coherent.js (Astro, Remix, SvelteKit)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"author": "Coherent.js Team",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@coherent.js/core": "1.0.0-beta.
|
|
32
|
+
"@coherent.js/core": "1.0.0-beta.6"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"vitest": "^4.0.8"
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"access": "public",
|
|
43
43
|
"registry": "https://registry.npmjs.org/"
|
|
44
44
|
},
|
|
45
|
+
"sideEffects": false,
|
|
45
46
|
"scripts": {
|
|
46
47
|
"build": "node build.mjs",
|
|
47
48
|
"test": "vitest"
|