Add jest tests and CI workflow

This commit is contained in:
thePR0M3TH3AN
2025-07-10 11:04:12 -04:00
parent ffef027687
commit d632f4fc6e
8 changed files with 3251 additions and 20 deletions

View File

@@ -4,7 +4,8 @@
"description": "DocForge static site generator",
"scripts": {
"dev": "eleventy --serve",
"build": "node src/generator/index.js"
"build": "node src/generator/index.js",
"test": "jest"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
@@ -13,6 +14,9 @@
"lunr": "^2.3.9",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"jest": "^29.6.1"
},
"license": "MIT",
"bin": {
"create-docforge": "./bin/create-docforge.js"