├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── ngl-cli.iml ├── preferred-vcs.xml ├── vcs.xml ├── watcherTasks.xml └── workspace.xml ├── README.md ├── bin └── index.js ├── lib ├── command.js ├── files.js └── log.js ├── package.json ├── template ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build.js ├── inline-resources.js ├── integration │ ├── .gitignore │ ├── README.md │ ├── bs-config.aot.json │ ├── bs-config.e2e-aot.json │ ├── bs-config.e2e.json │ ├── bs-config.json │ ├── build.js │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ └── tsconfig.json │ ├── package.json │ ├── protractor.config.js │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── favicon.ico │ │ ├── index-aot.html │ │ ├── index.html │ │ ├── main-aot.ts │ │ ├── main.ts │ │ ├── styles.css │ │ ├── systemjs-angular-loader.js │ │ ├── systemjs.config.js │ │ └── tsconfig.json │ └── tsconfig.aot.json ├── karma-test-shim.js ├── karma.conf.js ├── package.json ├── src │ ├── demo │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── tsconfig.json │ │ ├── typings.d.ts │ │ └── vendor.ts │ └── lib │ │ ├── index.ts │ │ ├── src │ │ ├── component │ │ │ ├── lib.component.css │ │ │ ├── lib.component.html │ │ │ ├── lib.component.spec.ts │ │ │ └── lib.component.ts │ │ ├── module.ts │ │ └── service │ │ │ ├── lib.service.spec.ts │ │ │ └── lib.service.ts │ │ ├── tsconfig.es5.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts ├── tools │ └── cleanup.js ├── tsconfig.json └── tslint.json ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/ngl-cli.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/preferred-vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ApexVCS 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 102 | 103 | 104 | 105 | 8 106 | CopyWebpackPlugin 107 | require 108 | context 109 | 110 | 111 | 112 | 114 | 115 | 131 | 132 | 133 | 134 | 135 | true 136 | 137 | false 138 | true 139 | true 140 | 141 | 142 | true 143 | DEFINITION_ORDER 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 |