Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the error link in README #46

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ intro to webpack.

### Translations
- [Chinese Traditional](https://github.com/AriaFallah/WebpackTutorial/tree/master/zh-TW)
- [简体中文](https://github.com/AriaFallah/WebpackTutorial/tree/master/zh-cn)
- [简体中文](./zh-cn)
4 changes: 2 additions & 2 deletions zh-cn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

Webpack 刚开始对我来说是很困难的,所以我想要建立一个对初学者友善,而且对 webpack 有着非常全面的介绍教学。

- [Part 1](https://github.com/neighborhood999/WebpackTutorial/tree/master/zh-TW/part1) - Webpack 基础和配置。
- [Part 2](https://github.com/neighborhood999/WebpackTutorial/tree/master/zh-TW/part2) - Babel、Lint、以及环境变数
- [Part 1](./part1) - Webpack 基础和配置。
- [Part 2](./part2) - Babel、Lint、以及环境变量
6 changes: 3 additions & 3 deletions zh-cn/part2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* [我们完成了?](#我们完成了)
* [Require ES6 的 Module](#require-es6-的-module)
* [额外收获](#额外收获)
* [Production 环境变数以及 Webpack 和 Babel](#production-环境变数以及-webpack-和-babel)
* [Production 环境变量以及 Webpack 和 Babel](#production-环境变量以及-webpack-和-babel)
* [加入 Lint](#加入-lint)
* [结论](#结论)

Expand Down Expand Up @@ -236,7 +236,7 @@ import Please from 'pleasejs'

既然前面没花太多时间,我将再讨论两个很重要且有用的主题。

### 在 Webpack 和 Babel 配置 production 环境变数
### 在 Webpack 和 Babel 配置 production 环境变量

#### Webpack

Expand Down Expand Up @@ -290,7 +290,7 @@ if (process.env.NODE_ENV !== 'production') {

#### Babel

将我们的 production 变数定义为 `process.env.NODE_ENV` 有其他额外的好处。
将我们的 production 变量定义为 `process.env.NODE_ENV` 有其他额外的好处。

[根据手册][1]

Expand Down