@frockbot/plugin-fly-sprite 0.3.33 → 0.3.34

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 +8 -8
  2. package/src/sync.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-fly-sprite",
3
- "version": "0.3.33",
3
+ "version": "0.3.34",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -25,16 +25,16 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@cordisjs/plugin-webui": "0.8.2",
28
- "@frockbot/computer-core": "0.3.33",
29
- "@frockbot/computer-host-protocol": "0.3.33",
30
- "@frockbot/computer-host-runtime": "0.3.33",
31
- "@frockbot/kernel-contracts": "0.3.33",
32
- "@frockbot/plugin-computer": "0.3.33",
28
+ "@frockbot/computer-core": "0.3.34",
29
+ "@frockbot/computer-host-protocol": "0.3.34",
30
+ "@frockbot/computer-host-runtime": "0.3.34",
31
+ "@frockbot/kernel-contracts": "0.3.34",
32
+ "@frockbot/plugin-computer": "0.3.34",
33
33
  "cordis": "4.0.0-rc.8"
34
34
  },
35
35
  "devDependencies": {
36
- "@frockbot/plugin-testkit": "0.3.33",
37
- "@frockbot/workspace-store": "0.3.33",
36
+ "@frockbot/plugin-testkit": "0.3.34",
37
+ "@frockbot/workspace-store": "0.3.34",
38
38
  "@types/bun": "1.4.0",
39
39
  "@types/node": "26.2.0",
40
40
  "typescript": "^7.0.2"
package/src/sync.ts CHANGED
@@ -128,6 +128,10 @@ const STORE_PAGE_LIMIT = 500;
128
128
  export const WORKSPACE_SYNC_IGNORED_DIRECTORIES_V1 = [
129
129
  "node_modules",
130
130
  ".git",
131
+ // Wrangler's local cache. It is regenerated on demand and its first file,
132
+ // `.wrangler/cache/cf.json`, is a single minified line — which is what the
133
+ // Applet canvas opened on before this was excluded (2026-09-05).
134
+ ".wrangler",
131
135
  "dist",
132
136
  "build",
133
137
  "out",