create-template-html-css 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/cli.js CHANGED
@@ -14,7 +14,7 @@ program
14
14
  .description(
15
15
  chalk.cyan("🎨 Create HTML/CSS UI component templates in seconds"),
16
16
  )
17
- .version("1.8.1");
17
+ .version("2.0.3");
18
18
 
19
19
  // Add intro message
20
20
  program.on("--help", () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-template-html-css",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "CLI tool to generate HTML and CSS templates for common UI elements",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/generator.js CHANGED
@@ -241,6 +241,22 @@ const VALID_COMPONENTS = [
241
241
  "login",
242
242
  "register",
243
243
  "skeleton",
244
+ "tic-tac-toe",
245
+ "memory-game",
246
+ "snake-game",
247
+ "guess-number",
248
+ "game-2048",
249
+ "whack-a-mole",
250
+ "simon-says",
251
+ "rock-paper-scissors",
252
+ "breakout",
253
+ "tetris",
254
+ "flappy-bird",
255
+ "connect-four",
256
+ "blackjack",
257
+ "slot-machine",
258
+ "dice-game",
259
+ "pong",
244
260
  ];
245
261
 
246
262
  // Security: Sanitize filename to prevent path traversal