@adriankulik/create-fullstack-app 1.2.0 → 1.3.0

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/cli/index.js CHANGED
@@ -7,6 +7,8 @@ const path = require('path');
7
7
  const { execSync } = require('child_process');
8
8
 
9
9
  async function main() {
10
+ const { asciiArt } = require('./logo');
11
+ console.log(pc.cyan(asciiArt));
10
12
  console.log(pc.cyan('\nWelcome to create-fullstack-app!\n'));
11
13
 
12
14
  // Simple argument parsing
package/cli/logo.js ADDED
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ asciiArt: `
3
+ ________ ________ ________
4
+ |\\ ____\\|\\ _____\\\\ __ \\
5
+ \\ \\ \\___|\\ \\ \\__/\\ \\ \\|\\ \\
6
+ \\ \\ \\ \\ \\ __\\\\ \\ __ \\
7
+ \\ \\ \\____\\ \\ \\_| \\ \\ \\ \\ \\
8
+ \\ \\_______\\ \\__\\ \\ \\__\\ \\__\\
9
+ \\|_______|\\|__| \\|__|\\|__|
10
+ `
11
+ };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.2.0",
6
+ "version": "1.3.0",
7
7
  "description": "A CLI tool for scaffolding a full-stack web application with your choice of frontend and backend technologies.",
8
8
  "main": "cli/index.js",
9
9
  "bin": {