generator-reveal
Advanced tools
Comparing version 0.0.15 to 0.1.0
@@ -6,3 +6,3 @@ 'use strict'; | ||
var RevealGenerator = module.exports = function RevealGenerator(args, options, config) { | ||
var RevealGenerator = module.exports = function RevealGenerator(args, options) { | ||
yeoman.generators.Base.apply(this, arguments); | ||
@@ -46,4 +46,4 @@ | ||
this.template('Gruntfile.js', 'Gruntfile.js'); | ||
this.template('index.html', 'index.html'); | ||
this.template('Gruntfile.coffee', 'Gruntfile.coffee'); | ||
this.template('index.tpl', 'index.tpl'); | ||
@@ -53,4 +53,3 @@ this.template('_package.json', 'package.json'); | ||
this.template('_config.json', 'config.json'); | ||
this.copy('loadtemplates.js', 'js/loadtemplates.js'); | ||
this.copy('main.js', 'js/main.js'); | ||
this.copy('loadhtmlslides.js', 'js/loadhtmlslides.js'); | ||
this.copy('list.json', 'slides/list.json'); | ||
@@ -57,0 +56,0 @@ }; |
@@ -5,6 +5,4 @@ { | ||
"dependencies": { | ||
"reveal.js": "git@github.com:hakimel/reveal.js.git#master", | ||
"handlebars": "~1.0.0", | ||
"jquery": "~1.10" | ||
"reveal.js": "master" | ||
} | ||
} |
@@ -7,9 +7,8 @@ { | ||
"grunt": "~0.4.1", | ||
"bower": "~0.9.2", | ||
"grunt-contrib-connect": "~0.2.0", | ||
"grunt-contrib-watch": "~0.5.2", | ||
"grunt-open": "~0.2.0", | ||
"matchdep": "~0.1.2", | ||
"connect-livereload": "~0.2.0", | ||
"moment": "~2.0.0" | ||
"grunt-contrib-connect": "~0.5.0", | ||
"grunt-contrib-watch": "~0.5.3", | ||
"grunt-contrib-jshint": "~0.6.4", | ||
"connect-livereload": "~0.3.0", | ||
"load-grunt-tasks": "~0.1.0", | ||
"grunt-coffeelint": "0.0.7" | ||
}, | ||
@@ -16,0 +15,0 @@ "engines": { |
{ | ||
"name": "generator-reveal", | ||
"version": "0.0.15", | ||
"version": "0.1.0", | ||
"description": "A Reveal.js generator for Yeoman", | ||
@@ -13,3 +13,3 @@ "keywords": [ | ||
"name": "Sebastian Lara Menares", | ||
"email": "", | ||
"email": "slaramen@gmail.com", | ||
"url": "https://github.com/slara" | ||
@@ -30,3 +30,9 @@ }, | ||
"yo": ">=1.0.4", | ||
"generator-mocha": "~0.1.1" | ||
"generator-mocha": "~0.1.1", | ||
"grunt": "~0.4.1", | ||
"load-grunt-tasks": "~0.1.0", | ||
"grunt-coffeelint": "0.0.7", | ||
"grunt-mocha-test": "~0.7.0", | ||
"grunt-contrib-jshint": "~0.6.4", | ||
"grunt-contrib-clean": "~0.5.0" | ||
}, | ||
@@ -33,0 +39,0 @@ "engines": { |
@@ -8,3 +8,3 @@ 'use strict'; | ||
var SlideGenerator = module.exports = function SlideGenerator(args, options, config) { | ||
var SlideGenerator = module.exports = function SlideGenerator() { | ||
// By calling `NamedBase` here, we get the argument to the subgenerator call | ||
@@ -11,0 +11,0 @@ // as `this.name`. |
@@ -26,4 +26,10 @@ /*global describe, beforeEach, it*/ | ||
'.jshintrc', | ||
'index.tpl', | ||
'.editorconfig', | ||
'package.json' | ||
'package.json', | ||
'Gruntfile.coffee', | ||
'bower.json', | ||
'config.json', | ||
'js/loadhtmlslides.js', | ||
'slides/list.json' | ||
]; | ||
@@ -48,3 +54,3 @@ | ||
this.app.options['skip-install'] = true; | ||
this.app.run({}, function(){ | ||
this.app.run({}, function () { | ||
helpers.assertFile('package.json', /"version": "1.2.3"/); | ||
@@ -51,0 +57,0 @@ done(); |
@@ -1,2 +0,2 @@ | ||
/*global describe, beforeEach, it*/ | ||
/*global describe, it*/ | ||
'use strict'; | ||
@@ -3,0 +3,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21737
8
197