├── .gitignore ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── Rakefile ├── app ├── USAGE ├── index.js └── templates │ ├── Gruntfile.js │ ├── bowerrc │ ├── gitattributes │ ├── gitignore │ └── package.json ├── config.js ├── package.json └── plugin └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | node_modules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/Rakefile -------------------------------------------------------------------------------- /app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/app/USAGE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/app/templates/bowerrc -------------------------------------------------------------------------------- /app/templates/gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *~ 3 | node_modules 4 | -------------------------------------------------------------------------------- /app/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/app/templates/package.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/package.json -------------------------------------------------------------------------------- /plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainberger/yeoman-wordpress/HEAD/plugin/index.js --------------------------------------------------------------------------------