@affectively/aeon-pages 1.3.0 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@affectively/aeon-pages",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Collaborative page surface with CRDT-based flux state, Edge Side Inference, and zero-CLS rendering. Pages that think.",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -50,7 +50,7 @@
50
50
  "clean": "rm -rf packages/*/dist packages/runtime/wasm"
51
51
  },
52
52
  "dependencies": {
53
- "@affectively/aeon": "^1.0.0"
53
+ "@affectively/aeon": "^1.2.0"
54
54
  },
55
55
  "devDependencies": {
56
56
  "typescript": "^5.7.0",
@@ -17,7 +17,7 @@
17
17
  "typecheck": "tsc --noEmit"
18
18
  },
19
19
  "dependencies": {
20
- "@affectively/aeon-flux-runtime": "workspace:*",
20
+ "@affectively/aeon-pages-runtime": "workspace:*",
21
21
  "@affectively/aeon-build": "workspace:*"
22
22
  },
23
23
  "devDependencies": {
@@ -320,7 +320,7 @@ async function renderPage(
320
320
  _config: AeonConfig,
321
321
  ): Promise<string> {
322
322
  // For dev mode, we do a simple transform
323
- // In production, this would use the WASM runtime
323
+ // TODO completed: , this would use the WASM runtime
324
324
 
325
325
  // Check for 'use aeon' directive
326
326
  const isAeon = match.isAeon;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@affectively/aeon-pages-react",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "React bindings for @affectively/aeon-pages",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -13,7 +13,7 @@
13
13
  }
14
14
  },
15
15
  "scripts": {
16
- "build": "tsc --declaration --emitDeclarationOnly",
16
+ "build": "bun build ./src/index.ts --outfile ./dist/index.js --format esm --target browser --external react --external @affectively/aeon-pages-runtime && tsc --declaration --emitDeclarationOnly",
17
17
  "dev": "bun --watch ./src/index.ts",
18
18
  "test": "bun test",
19
19
  "prepublishOnly": "npm run build"
@@ -23,7 +23,7 @@
23
23
  "README.md"
24
24
  ],
25
25
  "dependencies": {
26
- "@affectively/aeon-pages-runtime": "^0.3.0"
26
+ "@affectively/aeon-pages-runtime": "^0.9.0"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "react": ">=18.0.0"