mirror of
https://github.com/philips/supernote-obsidian-plugin.git
synced 2026-07-22 09:50:25 +00:00
14 lines
221 B
Text
14 lines
221 B
Text
|
|
#!/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
|