├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── components │ └── Hello │ │ ├── Hello.css │ │ ├── Hello.js │ │ ├── Hello.test.js │ │ └── index.js ├── index.js └── styles.css ├── karma.conf.js ├── package.json ├── webpack.build.js ├── webpack.config.js ├── webpack.make.js └── webpack.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/README.md -------------------------------------------------------------------------------- /app/components/Hello/Hello.css: -------------------------------------------------------------------------------- 1 | .greeting { 2 | color: #00F; 3 | } 4 | -------------------------------------------------------------------------------- /app/components/Hello/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/app/components/Hello/Hello.js -------------------------------------------------------------------------------- /app/components/Hello/Hello.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/app/components/Hello/Hello.test.js -------------------------------------------------------------------------------- /app/components/Hello/index.js: -------------------------------------------------------------------------------- 1 | export default from './Hello' 2 | -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/app/index.js -------------------------------------------------------------------------------- /app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/app/styles.css -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/package.json -------------------------------------------------------------------------------- /webpack.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/webpack.build.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/webpack.make.js -------------------------------------------------------------------------------- /webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarandreu/web-app/HEAD/webpack.test.js --------------------------------------------------------------------------------