castle-web-cli 0.4.62 → 0.4.63

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/init.js CHANGED
@@ -35,7 +35,7 @@ const DEFAULT_KIT = 'basic-2d';
35
35
  // Registry version of castle-web-sdk to inject when scaffolding from a
36
36
  // globally-installed castle-web (not from inside the workspace). Bumped
37
37
  // alongside cli/sdk version bumps.
38
- const PUBLISHED_SDK_VERSION = '0.4.5';
38
+ const PUBLISHED_SDK_VERSION = '0.4.6';
39
39
  // Never copied into a fresh deck: build/dependency junk, and castle.json (a
40
40
  // fresh deck has no deckId until its first save-deck).
41
41
  const KIT_COPY_EXCLUDE = new Set(['node_modules', '.castle', 'dist', '.git', 'castle.json']);
@@ -173,7 +173,7 @@ export function SceneEditor({
173
173
  <div className={styles.sceneToolsGroup}>{actorButtons}</div>
174
174
  </div>
175
175
  <div className={styles.stageWrap}>
176
- <div className={styles.stageCard}>
176
+ <div className={styles.stageCard} data-castle-card>
177
177
  <canvas
178
178
  ref={canvasRef}
179
179
  className={styles.stageCanvas}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "castle-web-cli",
3
- "version": "0.4.62",
3
+ "version": "0.4.63",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "castle-web": "./dist/index.js"