We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64bb37 commit ebd2c2cCopy full SHA for ebd2c2c
generators/update/index.js
@@ -1,6 +1,7 @@
1
'use strict';
2
var generators = require('yeoman-generator');
3
var chalk = require('chalk');
4
+var pkg = require('../../package.json');
5
6
module.exports = generators.Base.extend({
7
constructor: function () {
@@ -41,6 +42,8 @@ module.exports = generators.Base.extend({
41
42
default: function () {
43
this.composeWith('jekyllized:gulp', {
44
options: {
45
+ name: pkg.name,
46
+ version: pkg.version,
47
uploading: this.props.uploading,
48
babel: this.props.babel
49
}
0 commit comments