Skip to content

Commit

Permalink
rewrote app completely; includes mattbase wp theme framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbob committed Mar 27, 2015
1 parent 9b3601b commit b24d4e3
Show file tree
Hide file tree
Showing 2,247 changed files with 136,179 additions and 223,563 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1 +1 @@
npm-debug.log
node_modules
17 changes: 17 additions & 0 deletions .jshintrc
@@ -0,0 +1,17 @@
{
"bitwise": true,
"browser": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"immed": true,
"jquery": true,
"latedef": true,
"newcap": true,
"noarg": true,
"node": true,
"strict": false,
"trailing": true,
"multistr": true
}
39 changes: 39 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,39 @@
module.exports = function(grunt) {

grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'app/index.js'
]
},

watch: {
options: {
dateFormat: function(time) {
grunt.log.writeln('Finished in ' + time + 'ms');
grunt.log.writeln('Waiting...');
grunt.log.writeln('');
}
},
js: {
files: [
'<%= jshint.all %>'
],
tasks: ['jshint']
}
}
});

// Load tasks
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');

// Register tasks
grunt.registerTask('default', [
'jshint'
]);

};
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -16,8 +16,7 @@ A WordPress generator for [Yeoman](http://yeoman.io).
- Removes the default WordPress themes
- Optionally installs a custom theme
- Optionally installs a set of plugins
- Removes the Hello Dolly plugin
- Initializes and commits to git repo
- Initializes and commits to a git repo

### Uninstall
- To remove the generator run: `npm uninstall -g generator-mattbase`
5 changes: 0 additions & 5 deletions app/USAGE

This file was deleted.

0 comments on commit b24d4e3

Please sign in to comment.