add webtemplate to dub

This commit is contained in:
Adam D. Ruppe 2023-09-12 21:28:22 -04:00
parent b1550ee5b0
commit 6a8f5df572
2 changed files with 19 additions and 0 deletions

View File

@ -624,6 +624,21 @@
"dflags-gdc": ["-fmodule-file=arsd.script=$PACKAGE_DIR/script.d"],
"sourceFiles": ["script.d"]
},
{
"name": "webtemplate",
"description": "A dom and script based web template system",
"targetType": "library",
"dependencies": {
"arsd-official:script":"*",
"arsd-official:dom":"*",
"arsd-official:jsvar":"*",
"arsd-official:cgi":"*"
},
"dflags-dmd": ["-mv=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"],
"dflags-ldc": ["--mv=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"],
"dflags-gdc": ["-fmodule-file=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"],
"sourceFiles": ["webtemplate.d"]
},
{
"name": "terminal",
"description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.",

View File

@ -38,6 +38,10 @@
History:
Things inside script tag were added on January 7, 2022.
This module was added to dub on September 11, 2023 (dub v11.2).
It was originally written in July 2019 to support a demonstration of moving a ruby on rails app to D.
+/
module arsd.webtemplate;