holoscript 5.3.0__tar.gz → 5.3.1__tar.gz
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.
- {holoscript-5.3.0 → holoscript-5.3.1}/.gitignore +16 -6
- {holoscript-5.3.0 → holoscript-5.3.1}/PKG-INFO +1 -1
- {holoscript-5.3.0 → holoscript-5.3.1}/pyproject.toml +1 -1
- {holoscript-5.3.0 → holoscript-5.3.1}/README.md +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/examples/holoscript_tutorial.ipynb +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/__init__.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/client.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/generator.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/parser.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/renderer.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/robotics.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/sharer.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/traits.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/holoscript/validator.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/__init__.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/conftest.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_init.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_parser.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_pipeline_e2e.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_robotics.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_traits.py +0 -0
- {holoscript-5.3.0 → holoscript-5.3.1}/tests/test_validator.py +0 -0
|
@@ -121,10 +121,10 @@ coverage-output.txt
|
|
|
121
121
|
coverage_phase*.txt
|
|
122
122
|
err.txt
|
|
123
123
|
|
|
124
|
-
# Root debug files
|
|
125
|
-
debug-*.ts
|
|
126
|
-
debug-*.js
|
|
127
|
-
debug-*.d.ts
|
|
124
|
+
# Root debug files (anchored to root with /)
|
|
125
|
+
/debug-*.ts
|
|
126
|
+
/debug-*.js
|
|
127
|
+
/debug-*.d.ts
|
|
128
128
|
|
|
129
129
|
# Build logs at root
|
|
130
130
|
build.log
|
|
@@ -191,10 +191,20 @@ codebase.holo
|
|
|
191
191
|
core-graph.json
|
|
192
192
|
.holo_audits/
|
|
193
193
|
|
|
194
|
-
# Daemon local runtime artifacts
|
|
195
|
-
.holoscript
|
|
194
|
+
# Daemon local runtime artifacts (entire directory is runtime state)
|
|
195
|
+
.holoscript/
|
|
196
196
|
tmp-daemon-run.txt
|
|
197
197
|
|
|
198
|
+
# Deploy artifacts (ephemeral)
|
|
199
|
+
deploy_logs.json
|
|
200
|
+
deploy_result.json
|
|
201
|
+
|
|
202
|
+
# Tauri auto-generated code
|
|
203
|
+
packages/tauri-app/src-tauri/gen/
|
|
204
|
+
|
|
205
|
+
# Build temp files (tsup generates with random hashes)
|
|
206
|
+
tsup.config.bundled_*.mjs
|
|
207
|
+
|
|
198
208
|
# Core debug/investigation scripts (not source)
|
|
199
209
|
packages/core/check-fork-heap.cjs
|
|
200
210
|
packages/core/check-fork.mjs
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|