├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── app ├── index.js └── templates │ ├── _babelrc │ ├── _bower.json │ ├── _package.json │ ├── bowerrc │ ├── editorconfig │ ├── emptyfile │ ├── favicon.ico │ ├── gitignore │ ├── gulpfile.js │ ├── index.html │ ├── jshintrc │ ├── main.css │ ├── main.js │ ├── main.less │ ├── main.sass │ ├── main.scss │ └── main.styl ├── docs └── bower.md ├── package.json ├── screenshot.png └── test └── test-app.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/emptyfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/favicon.ico -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/gulpfile.js -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/main.css: -------------------------------------------------------------------------------- 1 | body:before { 2 | content: "I'm at 'app/css/main.styl"; 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/main.js: -------------------------------------------------------------------------------- 1 | /* jshint devel:true */ 2 | console.log('Look at app/js/main.js'); 3 | -------------------------------------------------------------------------------- /app/templates/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/main.less -------------------------------------------------------------------------------- /app/templates/main.sass: -------------------------------------------------------------------------------- 1 | body:before 2 | content: "I'm at 'app/css/main.sass" 3 | -------------------------------------------------------------------------------- /app/templates/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/app/templates/main.scss -------------------------------------------------------------------------------- /app/templates/main.styl: -------------------------------------------------------------------------------- 1 | body:before 2 | content "I'm at 'app/css/main.styl" 3 | -------------------------------------------------------------------------------- /docs/bower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/docs/bower.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/generator-modern-frontend/HEAD/test/test-app.js --------------------------------------------------------------------------------