Skip to content

Instantly share code, notes, and snippets.

View vyuvalv's full-sized avatar
:octocat:
Awesome stuff

Yuval Vardi vyuvalv

:octocat:
Awesome stuff
View GitHub Profile
@vyuvalv
vyuvalv / Hello World SFDX Generator
Last active November 3, 2019 10:46
Sample of `Hello world` Generator main file js
const Generator = require('yeoman-generator'); // this
const yosay = require('yosay'); // yeoman ascii image
const chalk = require('chalk'); // color text
const shell = require('shelljs'); // shell commands
module.exports = class extends Generator {
initializing() {
// Use this.log instead of console.log
this.log( yosay( chalk.red("Hello World") ) );