├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── app ├── USAGE ├── index.js └── templates │ ├── Gruntfile.js │ ├── _package.json │ ├── apple-touch-icon.png │ ├── bowerrc │ ├── editorconfig │ ├── favicon.ico │ ├── gitattributes │ ├── gitignore │ ├── index.html │ ├── main.css │ ├── main.js │ ├── main.scss │ └── robots.txt ├── contributing.md ├── docs └── recipes │ ├── README.md │ ├── assemble.md │ └── compass.md ├── package.json ├── readme.md └── test ├── babel.js ├── bootstrap.js ├── eslint.js ├── general.js ├── jquery.js ├── modernizr.js ├── sass.js └── test-framework.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/.travis.yml -------------------------------------------------------------------------------- /app/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/USAGE -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/apple-touch-icon.png -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/favicon.ico -------------------------------------------------------------------------------- /app/templates/gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .tmp 4 | bower_components 5 | -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/main.css -------------------------------------------------------------------------------- /app/templates/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/main.js -------------------------------------------------------------------------------- /app/templates/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/app/templates/main.scss -------------------------------------------------------------------------------- /app/templates/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | Disallow: 5 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/recipes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/docs/recipes/README.md -------------------------------------------------------------------------------- /docs/recipes/assemble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/docs/recipes/assemble.md -------------------------------------------------------------------------------- /docs/recipes/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/docs/recipes/compass.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/readme.md -------------------------------------------------------------------------------- /test/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/babel.js -------------------------------------------------------------------------------- /test/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/bootstrap.js -------------------------------------------------------------------------------- /test/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/eslint.js -------------------------------------------------------------------------------- /test/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/general.js -------------------------------------------------------------------------------- /test/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/jquery.js -------------------------------------------------------------------------------- /test/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/modernizr.js -------------------------------------------------------------------------------- /test/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/sass.js -------------------------------------------------------------------------------- /test/test-framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/generator-webapp_DEPRECATED/HEAD/test/test-framework.js --------------------------------------------------------------------------------