@voodocs/cli 1.0.0 → 1.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/CHANGELOG.md +205 -0
- package/README.md +305 -137
- package/lib/cli/__init__.py +6 -2
- package/lib/cli/init.py +228 -0
- package/lib/darkarts/annotations/parser.py +9 -9
- package/lib/darkarts/annotations/translator.py +32 -5
- package/lib/darkarts/annotations/types.py +1 -1
- package/lib/darkarts/cli_darkarts.py +142 -14
- package/lib/darkarts/core/interface.py +1 -1
- package/lib/darkarts/core/loader.py +1 -1
- package/lib/darkarts/core/plugin.py +1 -1
- package/lib/darkarts/core/registry.py +1 -1
- package/lib/darkarts/exceptions.py +1 -1
- package/lib/darkarts/plugins/voodocs/ai_native_plugin.py +1 -1
- package/lib/darkarts/plugins/voodocs/annotation_validator.py +1 -1
- package/lib/darkarts/plugins/voodocs/api_spec_generator.py +1 -1
- package/lib/darkarts/plugins/voodocs/documentation_generator.py +1 -1
- package/lib/darkarts/plugins/voodocs/html_exporter.py +1 -1
- package/lib/darkarts/plugins/voodocs/pdf_exporter.py +1 -1
- package/lib/darkarts/plugins/voodocs/test_generator.py +1 -1
- package/lib/darkarts/telemetry.py +1 -1
- package/package.json +1 -1
- package/voodocs_cli.py +3 -2
package/voodocs_cli.py
CHANGED
|
@@ -17,8 +17,9 @@ This is the main entry point for the voodocs command-line tool.
|
|
|
17
17
|
import sys
|
|
18
18
|
from pathlib import Path
|
|
19
19
|
|
|
20
|
-
# Add lib to path
|
|
21
|
-
|
|
20
|
+
# Add lib to path - resolve symlinks for npm global installs
|
|
21
|
+
script_path = Path(__file__).resolve()
|
|
22
|
+
lib_path = script_path.parent / "lib"
|
|
22
23
|
sys.path.insert(0, str(lib_path))
|
|
23
24
|
|
|
24
25
|
# Import and run CLI
|