@thewhateverapp/tile-sdk 0.18.7 → 0.20.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/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27,3 +27,14 @@ export * from './tools/index.js';
|
|
|
27
27
|
export * from './types.js';
|
|
28
28
|
// Templates (for tile-deploy/agent-service)
|
|
29
29
|
export * from './templates/index.js';
|
|
30
|
+
// =============================================================================
|
|
31
|
+
// Excalibur Game Engine
|
|
32
|
+
// =============================================================================
|
|
33
|
+
// IMPORTANT: Excalibur exports have been moved to a subpath to avoid ESM/CJS
|
|
34
|
+
// compatibility issues in Node.js environments.
|
|
35
|
+
//
|
|
36
|
+
// Use: import { ExcaliburGame, Actor, Vector, ... } from '@thewhateverapp/tile-sdk/excalibur'
|
|
37
|
+
//
|
|
38
|
+
// This allows the main package to be imported in Node.js without requiring
|
|
39
|
+
// the excalibur peer dependency to be installed.
|
|
40
|
+
// =============================================================================
|