caffa_Obsidian-Current-Fold.../build.sh
2025-05-17 19:28:51 +08:00

13 lines
256 B
Bash
Executable file

#!/bin/bash
# Build script for Current Folder Notes plugin
echo "Building Current Folder Notes plugin..."
# Run TypeScript compiler
npx tsc -noEmit false
# Use esbuild to bundle the project
node esbuild.config.mjs
echo "Build completed successfully!"