Skip to content

0.1.0 - Initial Release

Compare
Choose a tag to compare
@thescientist13 thescientist13 released this 06 Sep 03:45
· 26 commits to master since this release

Overview

Initial release showcasing Weback, Angular 2, TypeScript, Bootstrap and Karma all working together

Changelog

$ git diff 0aa3332547acebdd558d7be25efd73aabc6c870f 0.1.0 --stat
 .babelrc                                               |   3 +
 .editorconfig                                          |  10 ++
 .gitattributes                                         |   8 ++
 .gitignore                                             |   5 +
 README.md                                              | 241 ++++++++++++++++++++++++++++++++++++-
 Vagrantfile                                            |  18 +++
 bin/build.sh                                           |  36 ++++++
 bin/vagrant.sh                                         |  35 ++++++
 gulpfile.babel.js                                      |  21 ++++
 karma.conf.js                                          |  56 +++++++++
 package.json                                           |  88 ++++++++++++++
 src/components/bootstrap/bootstrap.component.ts        |  10 ++
 src/components/bootstrap/bootstrap.html                |  13 ++
 src/components/bootstrap/bootstrap.less                |  40 ++++++
 src/components/bootstrap/images/container-repeater.jpg | Bin 0 -> 1239 bytes
 src/components/bootstrap/images/favicon.png            | Bin 0 -> 23057 bytes
 src/components/footer/footer.component.ts              |  24 ++++
 src/components/footer/footer.html                      |   7 ++
 src/components/footer/footer.less                      |   9 ++
 src/components/header/header.component.ts              |  10 ++
 src/components/header/header.html                      |   9 ++
 src/components/header/header.less                      |   9 ++
 src/components/header/images/old-banner-mobile.jpg     | Bin 0 -> 128572 bytes
 src/components/header/images/old-banner.jpg            | Bin 0 -> 57439 bytes
 src/components/posts-list/posts-list.component.ts      |  26 ++++
 src/components/posts-list/posts-list.html              |  21 ++++
 src/components/posts-list/posts-list.less              |  13 ++
 src/index.html                                         |  39 ++++++
 src/main.ts                                            |  39 ++++++
 src/polyfills.ts                                       |  12 ++
 src/routes.ts                                          |  11 ++
 src/services/posts.service.spec.ts                     |  27 +++++
 src/services/posts.service.ts                          |  46 +++++++
 src/vendor.ts                                          |  10 ++
 src/views/home/home.component.ts                       |   9 ++
 src/views/home/home.html                               |  25 ++++
 src/views/home/home.less                               |  14 +++
 src/views/posts/post-details.component.ts              |  35 ++++++
 src/views/posts/post-details.html                      |  24 ++++
 src/views/posts/posts.component.ts                     |   8 ++
 src/views/posts/posts.html                             |  11 ++
 src/views/posts/posts.less                             |  13 ++
 tsconfig.json                                          |  20 +++
 tslint.json                                            | 139 +++++++++++++++++++++
 typings.json                                           |   9 ++
 webpack.config.common.js                               | 100 +++++++++++++++
 webpack.config.dev.js                                  |  77 ++++++++++++
 webpack.config.prod.js                                 |  92 ++++++++++++++
 48 files changed, 1470 insertions(+), 2 deletions(-)