Skip to content
This repository was archived by the owner on Dec 7, 2018. It is now read-only.

Commit bb40f6b

Browse files
committed
beta 3
1 parent 4325c4e commit bb40f6b

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#### Beta 2
2+
##### Features
3+
- refactoring and cleanup
4+
- Improved e2e testing
5+
16
#### Beta 2
27
##### Features
38
- #44 update to angular 5 beta

FILE-STRUCTURE.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ angular-webpack-skeleton/
1212
│ ├─html-elements-plugin/ * webpack plugin to add css, icons... during the creation of html files
1313
│ ├─head-config.common.js * list of files to be loaded by 'html-elements-plugin'
1414
│ ├─helpers.js * helper functions for configuration files
15-
│ ├─karma-test-runner.js * karma config for unit tests
15+
│ ├─karma.conf.js * karma config file for unit testing
16+
│ ├─karma-test-runner.js * karma test-runner file for unit testing
1617
│ ├─protractor.conf.js * protractor config for e2e tests
1718
│ ├─webpack.common.js * common webpack config (for both dev and prod)
1819
│ ├─webpack.dev.js * local developmet webpack config
@@ -95,14 +96,15 @@ angular-webpack-skeleton/
9596
├─.bootstraprc * main bootstrap-loader config file
9697
├─.travis.yml * travis ci config
9798
├─appveyor.yml * appveyor config
98-
├─karma.conf.js * karma config file for unit testing
99+
├─karma.conf.js * main karma config file for unit testing
99100
├─package.json * npm packages.json
100101
├─package-lock.json * lock file for npm >= 5
101102
├─postcss.config.js * postcss config file
102103
├─protractor.config.js * main protractor config file for e2e testing
103104
├─tsconfig.json * Config file for Typescript
104105
├─tsconfig-aot.json * Config file for Typescript used by AOT compiler
105-
└─tslit.json * TSLint config file
106+
├─tslit.json * TSLint config file
107+
└─webpack.conf.js * main webpack config file
106108
```
107109

108110
Created by Stefano Cappa (Ks89)

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<br>
44

55
# angular-webpack-skeleton
6-
A simple skeleton project with Angular 4, Webpack 3 and Bootstrap 4 beta ready to use.
6+
A simple skeleton project with Angular 5, Webpack 3 and Bootstrap 4 beta ready to use.
77

88
You can fork or clone this repository and build your project on it.
99
I suggest to add this repo as git remote to your repository to be able to update your project with newer releases of this project.
1010

1111
## Features
1212
- Typescript 2
13-
- Angular 4
13+
- Angular 5
1414
- [Ahead of Time (AOT)](https://angular.io/guide/aot-compiler)
1515
- [Lazy loading](https://angular.io/guide/ngmodule#lazy-loading-modules-with-the-router)
1616
- The new [HttpClient](https://angular.io/guide/http#httpclient) of Angular >= 4.3
@@ -47,6 +47,7 @@ I suggest to add this repo as git remote to your repository to be able to update
4747

4848

4949
## News
50+
- *09/17/2017* - Beta 3 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5051
- *08/11/2017* - Beta 2 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5152
- *08/10/2017* - Beta 1 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
5253
- *07/27/2017* - Alpha 21 - Check [HERE](https://github.com/Ks89/Angular2-webpack2-skeleton/releases)
@@ -87,7 +88,8 @@ angular-webpack-skeleton/
8788
│ ├─html-elements-plugin/ * webpack plugin to add css, icons... during the creation of html files
8889
│ ├─head-config.common.js * list of files to be loaded by 'html-elements-plugin'
8990
│ ├─helpers.js * helper functions for configuration files
90-
│ ├─karma-test-runner.js * karma config for unit tests
91+
│ ├─karma.conf.js * karma config file for unit testing
92+
│ ├─karma-test-runner.js * karma test-runner file for unit testing
9193
│ ├─protractor.conf.js * protractor config for e2e tests
9294
│ ├─webpack.common.js * common webpack config (for both dev and prod)
9395
│ ├─webpack.dev.js * local developmet webpack config
@@ -161,11 +163,12 @@ angular-webpack-skeleton/
161163
│ └─typings.d.ts * custom types for Typescript
162164
163165
├─.bootstraprc * main bootstrap-loader config file
164-
├─karma.conf.js * karma config file for unit testing
166+
├─karma.conf.js * main karma config file for unit testing
165167
├─protractor.config.js * main protractor config file for e2e testing
166168
├─tsconfig.json * Config file for Typescript
167169
├─tsconfig-aot.json * Config file for Typescript used by AOT compiler
168-
└─tslit.json * TSLint config file
170+
├─tslit.json * TSLint config file
171+
└─webpack.conf.js * main webpack config file
169172
```
170173

171174

0 commit comments

Comments
 (0)