create-theokit 3.0.0 → 3.0.2
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
|
@@ -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
|
|
15
|
-
#
|
|
16
|
-
#
|
|
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.
|