@voodocs/cli 2.1.1 → 2.1.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/CHANGELOG.md +6 -0
- package/lib/cli/__init__.py +1 -1
- package/lib/darkarts/context/commands.py +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/cli/__init__.py
CHANGED
|
@@ -1198,6 +1198,7 @@ def cmd_context_generate(source_dir: Optional[str] = None, update_existing: bool
|
|
|
1198
1198
|
"""
|
|
1199
1199
|
from pathlib import Path
|
|
1200
1200
|
import sys
|
|
1201
|
+
from .yaml_utils import write_context_yaml
|
|
1201
1202
|
|
|
1202
1203
|
try:
|
|
1203
1204
|
# Determine source directory
|
|
@@ -1291,7 +1292,6 @@ def cmd_context_generate(source_dir: Optional[str] = None, update_existing: bool
|
|
|
1291
1292
|
project_purpose="Auto-generated from @darkarts annotations",
|
|
1292
1293
|
code_version="1.0.0"
|
|
1293
1294
|
)
|
|
1294
|
-
from .yaml_utils import write_context_yaml
|
|
1295
1295
|
context_path = get_context_file_path()
|
|
1296
1296
|
write_context_yaml(minimal_context, context_path)
|
|
1297
1297
|
info(f"Created context file: {context_path}")
|
package/package.json
CHANGED