@certe/atmos-editor 0.3.0 → 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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/vite-plugin.cjs +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certe/atmos-editor",
3
3
  "description": "Browser-based Unity-style editor for the Atmos Engine — hierarchy, inspector, gizmos",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/certesolutions-cyber/atmos.git",
@@ -55,11 +55,11 @@
55
55
  }
56
56
  },
57
57
  "dependencies": {
58
- "@certe/atmos-animation": "^0.3.0",
59
- "@certe/atmos-assets": "^0.3.0",
60
- "@certe/atmos-core": "^0.3.0",
61
- "@certe/atmos-math": "^0.3.0",
62
- "@certe/atmos-renderer": "^0.3.0",
58
+ "@certe/atmos-animation": "^0.4.0",
59
+ "@certe/atmos-assets": "^0.4.0",
60
+ "@certe/atmos-core": "^0.4.0",
61
+ "@certe/atmos-math": "^0.4.0",
62
+ "@certe/atmos-renderer": "^0.4.0",
63
63
  "react": "^19.0.0",
64
64
  "react-dom": "^19.0.0"
65
65
  },
package/vite-plugin.cjs CHANGED
@@ -306,7 +306,7 @@ try {
306
306
  }
307
307
  // Also notify for project files (materials, scenes, etc.)
308
308
  if (relPath.startsWith('materials/') || relPath.startsWith('scenes/') || relPath.startsWith('textures/')) {
309
- server.hot.send('atmos:project-change', { kind, path: relPath });
309
+ server.hot.send('atmos:project-change', { kind: event, path: relPath });
310
310
  }
311
311
  });
312
312
  },