chore: upgrade deno_* crates to Mar 2024
The way extensions are injected into the Isolate changed dramatically between Sept 2021 and Jan 2024. Now ops are available in the virtual module ext:core/ops.
This commit is contained in:
parent
bdccb9cb88
commit
ac97ac37db
23 changed files with 618 additions and 303 deletions
1
examples/sqlite-integration/README.md
Normal file
1
examples/sqlite-integration/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
./starmelon exec --sqlite example.sqlite src/ShowDatabaseSchema.elm main --output=schema.html
|
||||
|
|
@ -11,7 +11,7 @@ main =
|
|||
let
|
||||
query =
|
||||
fetch
|
||||
"select json_object('type', type, 'name', name, 'sql', sql) from sqlite_master WHERE type = 'table'"
|
||||
"select type, name, sql from sqlite_master WHERE type = 'table'"
|
||||
[]
|
||||
(Json.Decode.map3
|
||||
(\kind name sql->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue