Created
May 25, 2016 16:57
-
-
Save ivanoats/c36deec6849b0ddd9170f27968ae3a09 to your computer and use it in GitHub Desktop.
gatsby-node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs-extra') | |
exports.postBuild = function ign (pages, callback) { | |
console.log('in IGN!') | |
const file = 'testing' | |
fs.outputFile(file, 'works', (err) => { | |
console.log(err) | |
}) | |
callback() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment