mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
13 lines
221 B
Bash
Executable file
13 lines
221 B
Bash
Executable file
#!/bin/sh
|
|
|
|
git submodule init
|
|
git submodule update
|
|
cd supernote-typescript/
|
|
git clean -x -f -d
|
|
npm install --include=dev
|
|
npm run build
|
|
npm link
|
|
cd ..
|
|
npm link supernote-typescript/
|
|
npm install --include=dev
|
|
npm run build
|