Skip to content

Commit 0a27b5d

Browse files
committed
v0.1.0
1 parent 2b1280a commit 0a27b5d

File tree

6 files changed

+92
-4
lines changed

6 files changed

+92
-4
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="0.1.0"></a>
7+
# [0.1.0](https://github.com/emyann/typescript-webpack-starter/compare/v0.0.3...v0.1.0) (2018-02-10)
8+
9+
10+
### Bug Fixes
11+
12+
* enable to emit d.ts files ([fea12cf](https://github.com/emyann/typescript-webpack-starter/commit/fea12cf))
13+
* **Build:** Fix https://github.com/emyann/typescript-webpack-starter/issues/14 ([8d90e34](https://github.com/emyann/typescript-webpack-starter/commit/8d90e34))
14+
* **Template:** Add missing .gitignore files ([bc5c6ae](https://github.com/emyann/typescript-webpack-starter/commit/bc5c6ae)), closes [#9](https://github.com/emyann/typescript-webpack-starter/issues/9)
15+
* **Test:** Fix UTs coverage with Istanbul configuration ([aff34e0](https://github.com/emyann/typescript-webpack-starter/commit/aff34e0))
16+
17+
18+
### Features
19+
20+
* **Build:** Run production build by default when running npm run build. ([66c5489](https://github.com/emyann/typescript-webpack-starter/commit/66c5489))
21+
* **CI:** Commit before this one says everything ([7cff6db](https://github.com/emyann/typescript-webpack-starter/commit/7cff6db))
22+
* **CI:** Update Travis steps ([48d1026](https://github.com/emyann/typescript-webpack-starter/commit/48d1026))
23+
* **CI:** Update travis steps. Run E2E Tests ([4fdcbb2](https://github.com/emyann/typescript-webpack-starter/commit/4fdcbb2))
24+
* **CLI:** 😒 ([d01e35c](https://github.com/emyann/typescript-webpack-starter/commit/d01e35c))
25+
* **CLI:** Add CLI basic feature to handle project creation ([95fec55](https://github.com/emyann/typescript-webpack-starter/commit/95fec55))
26+
* **CLI:** Add mandatory shebang ([0bc7b08](https://github.com/emyann/typescript-webpack-starter/commit/0bc7b08))
27+
* **CLI:** Add template folder with minimal files to start the module / application ([38657f9](https://github.com/emyann/typescript-webpack-starter/commit/38657f9))
28+
* **CLI:** Ensure the cli is installed globally ([9c52d42](https://github.com/emyann/typescript-webpack-starter/commit/9c52d42))
29+
* **CLI:** Script to create a basic typescript boilerplate with no build configuration ([39f9c07](https://github.com/emyann/typescript-webpack-starter/commit/39f9c07))
30+
* **configurations:** Simplify the web pack configuration using a single file. Add cross-env dependency ([4cadd5c](https://github.com/emyann/typescript-webpack-starter/commit/4cadd5c))
31+
* **continuous-integration:** Continuous integration with Travis ([fd5fa82](https://github.com/emyann/typescript-webpack-starter/commit/fd5fa82))
32+
* **dev-server:** Add webpack-dashboard plugin to dev configuration ([8d6e908](https://github.com/emyann/typescript-webpack-starter/commit/8d6e908))
33+
* **dev-server:** Add webpack-dev-server. ([7e56319](https://github.com/emyann/typescript-webpack-starter/commit/7e56319))
34+
* Remove create-ts-lib dependency. Add Lerna to handle multiple packages ([4cc0d71](https://github.com/emyann/typescript-webpack-starter/commit/4cc0d71))
35+
* **Setup:** Open the Browser tab when running npm start ([9f78fd8](https://github.com/emyann/typescript-webpack-starter/commit/9f78fd8))
36+
* Fix lerna version for all packages ([efb8098](https://github.com/emyann/typescript-webpack-starter/commit/efb8098))
37+
* Use Main project as a proxy for the CLI and scaffold a `app` when `npm start` ([8f8f31b](https://github.com/emyann/typescript-webpack-starter/commit/8f8f31b))
38+
* **Doc:** Add Development Section. Add CONTRIBUTING.md file ([f0b6dc4](https://github.com/emyann/typescript-webpack-starter/commit/f0b6dc4))
39+
* **Doc:** Add framework info ([e6f1ad1](https://github.com/emyann/typescript-webpack-starter/commit/e6f1ad1))
40+
* **Doc:** update readme.md ([e11b027](https://github.com/emyann/typescript-webpack-starter/commit/e11b027))
41+
* **E2E:** Add npm run build command to Test ([fd57296](https://github.com/emyann/typescript-webpack-starter/commit/fd57296))
42+
* **Test:** Add end to end test as another package ([244c512](https://github.com/emyann/typescript-webpack-starter/commit/244c512))
43+
* **Test:** Show Unit Tests timing ([cd663fe](https://github.com/emyann/typescript-webpack-starter/commit/cd663fe))
44+
* **Tests:** Minimal working configuration for Unit Tests and coverage with Karma, TypeScript and WebPack ([4f7c84a](https://github.com/emyann/typescript-webpack-starter/commit/4f7c84a))
45+
* **Webpack:** Add istanbul instrumenter loader configuration. File formatting ([91a40c5](https://github.com/emyann/typescript-webpack-starter/commit/91a40c5))
46+
* **webpack-dashboard:** Integrate the Webpack dashboard ([f8180af](https://github.com/emyann/typescript-webpack-starter/commit/f8180af))

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "0.0.1"
6+
"version": "0.1.0"
77
}

packages/cli/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="0.1.0"></a>
7+
# [0.1.0](https://github.com/emyann/typescript-webpack-starter/compare/v0.0.3...v0.1.0) (2018-02-10)
8+
9+
10+
### Bug Fixes
11+
12+
* enable to emit d.ts files ([fea12cf](https://github.com/emyann/typescript-webpack-starter/commit/fea12cf))
13+
* **Build:** Fix https://github.com/emyann/typescript-webpack-starter/issues/14 ([8d90e34](https://github.com/emyann/typescript-webpack-starter/commit/8d90e34))
14+
* **Template:** Add missing .gitignore files ([bc5c6ae](https://github.com/emyann/typescript-webpack-starter/commit/bc5c6ae)), closes [#9](https://github.com/emyann/typescript-webpack-starter/issues/9)
15+
* **Test:** Fix UTs coverage with Istanbul configuration ([aff34e0](https://github.com/emyann/typescript-webpack-starter/commit/aff34e0))
16+
17+
18+
### Features
19+
20+
* **Build:** Run production build by default when running npm run build. ([66c5489](https://github.com/emyann/typescript-webpack-starter/commit/66c5489))
21+
* **CLI:** Add CLI basic feature to handle project creation ([95fec55](https://github.com/emyann/typescript-webpack-starter/commit/95fec55))
22+
* **CLI:** Add mandatory shebang ([0bc7b08](https://github.com/emyann/typescript-webpack-starter/commit/0bc7b08))
23+
* **CLI:** Add template folder with minimal files to start the module / application ([38657f9](https://github.com/emyann/typescript-webpack-starter/commit/38657f9))
24+
* **CLI:** Ensure the cli is installed globally ([9c52d42](https://github.com/emyann/typescript-webpack-starter/commit/9c52d42))
25+
* **CLI:** Script to create a basic typescript boilerplate with no build configuration ([39f9c07](https://github.com/emyann/typescript-webpack-starter/commit/39f9c07))
26+
* **Test:** Show Unit Tests timing ([cd663fe](https://github.com/emyann/typescript-webpack-starter/commit/cd663fe))
27+
* **Webpack:** Add istanbul instrumenter loader configuration. File formatting ([91a40c5](https://github.com/emyann/typescript-webpack-starter/commit/91a40c5))

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-ts-lib",
3-
"version": "0.0.11",
3+
"version": "0.1.0",
44
"description": "Create your TypeScript module with no nuild configuration",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

packages/e2e/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="0.1.0"></a>
7+
# [0.1.0](https://github.com/emyann/typescript-webpack-starter/compare/v0.0.3...v0.1.0) (2018-02-10)
8+
9+
10+
### Features
11+
12+
* **CI:** Update travis steps. Run E2E Tests ([4fdcbb2](https://github.com/emyann/typescript-webpack-starter/commit/4fdcbb2))
13+
* **E2E:** Add npm run build command to Test ([fd57296](https://github.com/emyann/typescript-webpack-starter/commit/fd57296))
14+
* **Test:** Add end to end test as another package ([244c512](https://github.com/emyann/typescript-webpack-starter/commit/244c512))
15+
* Fix lerna version for all packages ([efb8098](https://github.com/emyann/typescript-webpack-starter/commit/efb8098))

packages/e2e/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "e2e",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "",
55
"private": true,
66
"main": "index.js",
@@ -9,7 +9,7 @@
99
"test": "create-ts-lib app && cd app && npm run build && npm run test"
1010
},
1111
"dependencies": {
12-
"create-ts-lib": "^0.0.11",
12+
"create-ts-lib": "^0.1.0",
1313
"rimraf": "^2.6.2"
1414
},
1515
"keywords": [],

0 commit comments

Comments
 (0)