Skip to content

Commit

Permalink
Feature/update documents (#64)
Browse files Browse the repository at this point in the history
* adding sass-loader sample to webpack-3 sample

* some updates in documentation

* updated release notes

* Updated release notes

* screenshots are updated

* version is updated to 4.0.2

* fixed asserts in test based on new compile output

* allow 1 minute to run integration tests
  • Loading branch information
jkanczler authored Jan 27, 2018
1 parent 3088ffa commit 22eab79
Show file tree
Hide file tree
Showing 27 changed files with 1,269 additions and 44 deletions.
6 changes: 5 additions & 1 deletion DETAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.0.0 (26/01/2018)
* 4.0.2 (27/01/2018)
* Documentation is updated.
* 4.0.1 (27/01/2018)
* Errors and Warnings are reported correctly in the webpack like logs based on the --display none/errors-only/minimal/normal/detailed/verbose option.
* 4.0.0 (27/01/2018)
* Using webpack-cli again instead of node.js API.
* 3.2.2 (03/10/2017)
* Avoid webpack task summary section overflow with adding scrollbar.
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
next-version: 4.0.1
next-version: 4.0.2
assembly-informational-format: '{SemVer}'
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ stats.js Location | true | ./node_modules/webpack/lib/Stats.js | Location of the

## <a id="release-notes"></a>Release Notes

* 4.0.0 (26/01/2018)
* 4.0.2 (27/01/2018)
* Documentation is updated.
* 4.0.1 (27/01/2018)
* Errors and Warnings are reported correctly in the webpack like logs based on the --display none/errors-only/minimal/normal/detailed/verbose option.
* 4.0.0 (27/01/2018)
* Using webpack-cli again instead of node.js API.
* 3.2.2 (03/10/2017)
* Avoid webpack task summary section overflow with adding scrollbar.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wepback-vsts-extension",
"version": "4.0.1",
"version": "4.0.2",
"description": "webpack Visual Studio Team System (VSTS) Extension",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions samples/webpack-3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
"license": "ISC",
"devDependencies": {
"awesome-typescript-loader": "3.2.1",
"css-loader": "0.28.9",
"node-sass": "4.7.2",
"sass-loader": "6.0.6",
"style-loader": "0.20.1",
"tslint": "5.4.3",
"tslint-loader": "3.5.3",
"typescript": "2.4.1",
Expand Down
3 changes: 3 additions & 0 deletions samples/webpack-3/src/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.my-class {
width: 100px
}
2 changes: 2 additions & 0 deletions samples/webpack-3/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
import "./index.scss";

console.log("Hello, World!");
10 changes: 10 additions & 0 deletions samples/webpack-3/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ module.exports = {
test: /\.tsx?$/,
use: 'awesome-typescript-loader',
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: [{
loader: "style-loader"
}, {
loader: "css-loader"
}, {
loader: "sass-loader"
}]
}
]
},
Expand Down
Loading

0 comments on commit 22eab79

Please sign in to comment.