├── .gitignore ├── Gulpfile.js ├── README.md ├── client ├── app │ └── app.js └── index.html ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | DS_Store 4 | dist 5 | client/lib 6 | -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/README.md -------------------------------------------------------------------------------- /client/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/client/app/app.js -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/client/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrontendMasters/angular-components/HEAD/webpack.config.js --------------------------------------------------------------------------------