├── .gitignore ├── README.md ├── karma.conf.js ├── package.json ├── src ├── app.config.js ├── app.css ├── app.js ├── asset │ └── image │ │ └── components.jpg ├── common │ ├── common.module.js │ └── component │ │ └── user-info-component.js ├── feature-a │ ├── feature-a.config.js │ ├── feature-a.ctrl.js │ ├── feature-a.module.js │ └── feature-a.tpl.html ├── feature-b │ ├── feature-b.config.js │ ├── feature-b.module.js │ └── some-component │ │ ├── some-component.js │ │ └── some-component.tpl.html ├── index.html └── tests.webpack.js ├── webpack.build.js ├── webpack.config.js ├── webpack.make.js └── webpack.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | build 4 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/package.json -------------------------------------------------------------------------------- /src/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/app.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 80px; 3 | } -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/app.js -------------------------------------------------------------------------------- /src/asset/image/components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/asset/image/components.jpg -------------------------------------------------------------------------------- /src/common/common.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/common/common.module.js -------------------------------------------------------------------------------- /src/common/component/user-info-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/common/component/user-info-component.js -------------------------------------------------------------------------------- /src/feature-a/feature-a.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-a/feature-a.config.js -------------------------------------------------------------------------------- /src/feature-a/feature-a.ctrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-a/feature-a.ctrl.js -------------------------------------------------------------------------------- /src/feature-a/feature-a.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-a/feature-a.module.js -------------------------------------------------------------------------------- /src/feature-a/feature-a.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-a/feature-a.tpl.html -------------------------------------------------------------------------------- /src/feature-b/feature-b.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-b/feature-b.config.js -------------------------------------------------------------------------------- /src/feature-b/feature-b.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-b/feature-b.module.js -------------------------------------------------------------------------------- /src/feature-b/some-component/some-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-b/some-component/some-component.js -------------------------------------------------------------------------------- /src/feature-b/some-component/some-component.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/feature-b/some-component/some-component.tpl.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/index.html -------------------------------------------------------------------------------- /src/tests.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/src/tests.webpack.js -------------------------------------------------------------------------------- /webpack.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/webpack.build.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/webpack.make.js -------------------------------------------------------------------------------- /webpack.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomastrajan/component-pattern-for-angular-js-1-x/HEAD/webpack.test.js --------------------------------------------------------------------------------