mirror of
https://github.com/caffa/Obsidian-Current-Folder-Note-Display-Plugin.git
synced 2026-07-22 09:50:27 +00:00
13 lines
256 B
Bash
Executable file
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!"
|
|
|