Updated to new conventions

This commit is contained in:
Zef Hemel
2024-07-30 14:34:50 +02:00
parent db6841dd1c
commit 28f4aacf84
4 changed files with 8 additions and 10 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
deno.lock

View File

@@ -4,7 +4,7 @@
Insert your plug description here Insert your plug description here
## Build ## Build
To build this plug, make sure you have [SilverBullet installed](https://silverbullet.md/Install). Then, build the plug with: To build this plug, make sure you have [SilverBullet installed with Deno](https://silverbullet.md/Install/Deno). Then, build the plug with:
```shell ```shell
deno task build deno task build
@@ -22,7 +22,7 @@ Then, copy the resulting `.plug.js` file into your space's `_plug` folder. Or bu
deno task build && cp *.plug.js /my/space/_plug/ deno task build && cp *.plug.js /my/space/_plug/
``` ```
SilverBullet will automatically sync and load the new version of the plug (or speed up this process by running the {[Sync: Now]} command). SilverBullet will automatically sync and load the new version of the plug, just watch the logs (browser and server) to see when this happens.
## Installation ## Installation
If you would like to install this plug straight from Github, make sure you have the `.js` file committed to the repo and simply add If you would like to install this plug straight from Github, make sure you have the `.js` file committed to the repo and simply add

View File

@@ -1,8 +1,7 @@
{ {
"importMap": "import_map.json",
"tasks": { "tasks": {
"build": "silverbullet plug:compile --importmap import_map.json hello.plug.yaml", "build": "silverbullet plug:compile -c deno.jsonc hello.plug.yaml",
"watch": "silverbullet plug:compile --importmap import_map.json hello.plug.yaml -w" "watch": "silverbullet plug:compile -c deno.jsonc hello.plug.yaml -w"
}, },
"lint": { "lint": {
"rules": { "rules": {
@@ -15,5 +14,8 @@
"**/*.md", "**/*.md",
"*.plug.js" "*.plug.js"
] ]
},
"imports": {
"$sb/": "https://deno.land/x/silverbullet/plug-api/"
} }
} }

View File

@@ -1,5 +0,0 @@
{
"imports": {
"$sb/": "https://deno.land/x/silverbullet/plug-api/"
}
}