element.version === currentVersion)) { versionNodes.unshift({ version: currentVersion, url: "#" }); } document.querySelector("#project-version").innerHTML = versionNodes.reduce( (acc, element) => { const status = currentVersion === element.version ? "selected disabled" : ""; return ` ${acc} `; }, `
novdom_dev_tools · v0.4.0

novdom dev tools

This is a fork of the lustre-dev-tools so most of the tooling is the same.
Adapted to work with the novdom.

Features added

  • Added init command to create the inital project structure. \
    • Adding relevant js packages needed by novdom using bun. -❌ Adding Typescript support for the project.
    • Adding TailwindCSS support for the project.
  • Changed the build command a bit. -❌ Added tsc to compile the typescript files.
    • Added --prod flag to minify the output and move it to the dist folder (can be changed by --outdir={new/dir}).
    • When building for development, the output will be in the build folder (can be changed by --outdir={new/dir}). –> Is there a way to not bundle into one file using esbuild?
Search Document