Skip to content

Commit b06dd1d

Browse files
committed
Chore: Update code comments
Updates various code comments.
1 parent e506704 commit b06dd1d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

goatee-cli.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
#!/usr/bin/env node
22

3+
// Goatee - CLI
4+
// Code only web framework
5+
// Description:
6+
// A code-only, logic-driven web framework that lets you build static HTML websites using pure JavaScript.
7+
// No templates, no magic—just structured layout through class-based elements and straightforward rendering.
8+
9+
// Imports
310
import fs from "fs";
411
import path from "path";
512
import { Goatee } from "@codegoatx/goatee";

src/Goatee.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// Goatee
22
// Code only web framework
3+
// Description:
4+
// A code-only, logic-driven web framework that lets you build static HTML websites using pure JavaScript.
5+
// No templates, no magic—just structured layout through class-based elements and straightforward rendering.
36

47
// Imports
58
import fs from "fs";

0 commit comments

Comments
 (0)