create-theokit 3.0.0 → 3.0.1

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": "create-theokit",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new TheoKit project",
6
6
  "repository": {
@@ -16,7 +16,7 @@
16
16
  "typecheck": "tsc --noEmit"
17
17
  },
18
18
  "dependencies": {
19
- "theokit": "^0.66.0",
19
+ "theokit": "^0.68.0",
20
20
  "@theokit/agents": "^12.1.0",
21
21
  "@theokit/sdk": "^5.3.0",
22
22
  "@theokit/ui": "^1.1.0",
@@ -11,9 +11,15 @@
11
11
  allowBuilds:
12
12
  # The bundler behind `theokit dev` and `theokit build`; ships a platform binary.
13
13
  esbuild: true
14
- # A native terminal, reached through @theokit/agents. Compiles or downloads a
15
- # prebuild on install. A web-only app never opens one see usetheokit/theokit#25
16
- # if you would rather not pay for it.
14
+ # A native terminal. Compiles or downloads a prebuild on install, so it is the one
15
+ # entry here that costs real time and a scaffolded app does NOT install it.
16
+ # Measured 2026-09-20 on a scaffold generated from this template: 0 occurrences in
17
+ # the generated pnpm-lock.yaml, out of 453 resolved packages, and pnpm raised no
18
+ # ERR_PNPM_IGNORED_BUILDS. It arrives only if you add a package that depends on it.
19
+ # An earlier version of this comment said it was "reached through @theokit/agents";
20
+ # that package declares no pty dependency, so the line is corrected rather than
21
+ # deleted — a wrong reason for a right entry is what sent the last reader looking
22
+ # in the wrong place (usetheokit/theokit#25).
17
23
  node-pty: true
18
24
  # Present only if you add them; harmless entries otherwise, and here so the
19
25
  # decision is already made the day you do.