This commit is contained in:
锦恢 2025-01-10 23:36:10 +08:00
parent 48ee528020
commit 3838196cca
2 changed files with 5 additions and 1 deletions

View File

@ -19,4 +19,5 @@ design
lib
*.vcd
*.zip
figures
figures
scripts

View File

@ -96,6 +96,9 @@ def install_extension():
vsix_path = os.path.join('dist', vsix_files[0])
os.system('code --install-extension ' + vsix_path)
if os.path.exists('dist'):
shutil.rmtree('dist')
pipe = CommandPipe()
pipe.add_command('uninstall original extension', 'code --uninstall-extension sterben.fpga-support')
pipe.add_command('compile typescript', 'tsc -p ./ --outDir out-js')