Skip to content

Commit

Permalink
Merge pull request #21 from ice-lab/ice-scripts/release-2.1.5
Browse files Browse the repository at this point in the history
ice-scripts/release-2.1.5
  • Loading branch information
imsobear authored Jul 22, 2019
2 parents 21fdc63 + 3bfeac6 commit 06cd0c3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.1.5

- [feat] 支持非终端场景下构建日志的输出

## 2.1.4

- [feat] 支持 `ice-scripts test <regexForTestFiles>` 指定测试文件
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@commitlint/config-conventional": "^7.5.0",
"@ice/spec": "^0.1.4",
"eslint": "^6.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^1.3.1",
"lerna": "^3.15.0"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/ice-scripts/lib/config/setWebpackPlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const webpack = require('webpack');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const FilterWarningsPlugin = require('webpack-filter-warnings-plugin');
const SimpleProgressPlugin = require('webpack-simple-progress-plugin');
const ProgressPlugin = require('webpack/lib/ProgressPlugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
Expand All @@ -29,7 +30,8 @@ module.exports = (chainConfig, mode = 'development') => {
}])
.end()
.plugin('SimpleProgressPlugin')
.use(SimpleProgressPlugin)
// SimpleProgressPlugin will not write webpack info to stderr when it is not tty
.use(!process.stderr.isTTY ? ProgressPlugin : SimpleProgressPlugin)
.end()
.plugin('CaseSensitivePathsPlugin')
.use(CaseSensitivePathsPlugin)
Expand Down
2 changes: 1 addition & 1 deletion packages/ice-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ice-scripts",
"version": "2.1.4",
"version": "2.1.5",
"description": "ICE SDK",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 06cd0c3

Please sign in to comment.