initial commit
This commit is contained in:
commit
3bdd4a94ae
|
@ -0,0 +1 @@
|
||||||
|
node_modules
|
|
@ -0,0 +1,7 @@
|
||||||
|
const fortuneSource = require('fortune-tweetable')
|
||||||
|
|
||||||
|
module.exports = function (embark) {
|
||||||
|
embark.events.on("outputDone", () => {
|
||||||
|
embark.logger.info(fortuneSource.fortune())
|
||||||
|
});
|
||||||
|
};
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"name": "embark-fortune",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"requires": true,
|
||||||
|
"dependencies": {
|
||||||
|
"fortune-tweetable": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/fortune-tweetable/-/fortune-tweetable-1.0.0.tgz",
|
||||||
|
"integrity": "sha1-WXPMui/rbiVCq8vFgnUHkVuw+Lw="
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name": "embark-fortune",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Embark plugin to display a fortune quote after each build",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"fortune-tweetable": "1.0.0"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue