Last active
July 26, 2016 12:51
-
-
Save despairblue/82a7bd6a16eccdbb7856493fb4d79c0a to your computer and use it in GitHub Desktop.
plop error
This file contains 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
This file contains 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
{ | |
"name": "82a7bd6a16eccdbb7856493fb4d79c0a", | |
"version": "1.0.0", | |
"description": "", | |
"main": "plopfile.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+ssh://[email protected]/82a7bd6a16eccdbb7856493fb4d79c0a.git" | |
}, | |
"author": "", | |
"license": "ISC", | |
"bugs": { | |
"url": "https://gist.github.com/82a7bd6a16eccdbb7856493fb4d79c0a" | |
}, | |
"homepage": "https://gist.github.com/82a7bd6a16eccdbb7856493fb4d79c0a", | |
"dependencies": { | |
"plop": "1.5.0" | |
} | |
} |
This file contains 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
module.exports = function (plop) { | |
plop.setGenerator('basics', { | |
description: 'this is a skeleton plopfile', | |
// prompts: [], | |
actions: [{ | |
type: 'add', | |
file: 'bar.js', | |
templateFile: 'foo.js' | |
}] | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment