Skip to content
This repository has been archived by the owner on Dec 12, 2017. It is now read-only.

Commit

Permalink
v1.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
QingWei-Li committed Dec 15, 2016
1 parent c7d4996 commit 4ffe74c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## [v1.2.10] 2016.12.15
- cooking: 修复 hints 配置错误

## [v1.2.9] 2016.12.15
- cooking-cli: 升级到 webpack rc

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0-beta.26",
"version": "1.2.9",
"version": "1.2.10",
"bootstrapConfig": {
"ignore": "cooking-cli"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/cooking-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cooking-cli",
"version": "1.2.9",
"version": "1.2.10",
"description": "cooking cli.",
"preferGlobal": true,
"bin": {
Expand Down Expand Up @@ -45,7 +45,7 @@
"babel-preset-stage-2": "^6.0.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"cooking": "^1.2.9",
"cooking": "^1.2.10",
"cross-spawn": "^4.0.0",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "beta",
Expand Down
2 changes: 1 addition & 1 deletion packages/cooking/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cooking",
"version": "1.2.9",
"version": "1.2.10",
"description": "A modular build tool based on webpack.",
"main": "lib/cooking.js",
"preferGlobal": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/cooking/util/get-base-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = function (userConfig) {
const assetsPath = userConfig.assetsPath || 'static'
return {
performance: {
hints: process.env.NODE_ENV === 'production'
hints: process.env.NODE_ENV === 'production' ? 'warning' : false
},

output: {
Expand Down

0 comments on commit 4ffe74c

Please sign in to comment.