Initial commit

This commit is contained in:
2025-12-17 20:36:13 +01:00
parent d2485cec73
commit a265c31460
14 changed files with 1045 additions and 0 deletions

32
build-package.bat Normal file
View File

@@ -0,0 +1,32 @@
@echo off
echo Building TaskWeaver plugin...
REM Run the build
call npm run build
if %errorlevel% neq 0 (
echo Build failed!
exit /b %errorlevel%
)
echo Build successful!
echo Packaging plugin files...
REM Create package directory
if exist "taskweaver-package" rmdir /s /q "taskweaver-package"
mkdir "taskweaver-package"
REM Copy required files
copy "main.js" "taskweaver-package\"
copy "manifest.json" "taskweaver-package\"
copy "styles.css" "taskweaver-package\"
echo.
echo Package created successfully in 'taskweaver-package' folder!
echo.
echo Files included:
echo - main.js
echo - manifest.json
echo - styles.css
echo.
echo To install: Copy the contents of 'taskweaver-package' to your vault's .obsidian/plugins/taskweaver/ folder