Skip to content

Commit

Permalink
Implemented news console design
Browse files Browse the repository at this point in the history
  • Loading branch information
ImBaphomettt committed Nov 7, 2019
1 parent a553aec commit 3a38920
Show file tree
Hide file tree
Showing 3 changed files with 562 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main.ts
@@ -1,6 +1,9 @@
import * as request from 'request';
import {FilesBuilder} from "./src/files-builder";
import {ContentGenerate} from "./src/content-generate";
import * as figlet from 'figlet';
import * as chalk from 'chalk';


/**
* The [[Main]] class that groups together all the logical execution processes of the system.
Expand Down Expand Up @@ -59,4 +62,12 @@ export class Main {
};

}

figlet('JetBrainIDE-CitizenFX', function (err, data) {
// @ts-ignore
console.log(chalk.green(data));
// @ts-ignore
console.log(chalk.magenta("By Dylan Malandain - @iTexZoz"));
});

new Main.onEnable("build");

0 comments on commit 3a38920

Please sign in to comment.