Skip to content

Commit

Permalink
docs(docs): 修改文档,并发版npm
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxue committed Dec 17, 2019
1 parent f0fed9e commit 76e3e52
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.0.6 (2019-12-17)
## 1.0.7 (2019-12-17)

### 🌟 新功能
范围|描述|commitId
Expand Down Expand Up @@ -32,6 +32,7 @@
init | 项目初始化 | [d7835fb](https://github.com/luoxue-victor/learn_webpack/commit/d7835fb)
lint-staged | 添加 lint-staged,并修改课题10文档 | [a84dff0](https://github.com/luoxue-victor/learn_webpack/commit/a84dff0)
logo | 添加logo | [32ff923](https://github.com/luoxue-victor/learn_webpack/commit/32ff923)
mock | 增加mock数据功能 | [f0fed9e](https://github.com/luoxue-victor/learn_webpack/commit/f0fed9e)
options-chain | 增加可选链并完善文档 | [b188007](https://github.com/luoxue-victor/learn_webpack/commit/b188007)
plugin | 增加课题8 写一个webpack插件 | [0d021ce](https://github.com/luoxue-victor/learn_webpack/commit/0d021ce)
prefetch + preload | 增加prefetch跟preload | [80903d3](https://github.com/luoxue-victor/learn_webpack/commit/80903d3)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
- [课时 19:添加 webpack 配置检查命令](./docs/课时-19.md)
- [课时 20:添加 prefetch + preload](./docs/课时-20.md)
- [课时 21:增加 GraphQL Server](./docs/课时-21.md)
- [课时 21:开启 mock](./docs/课时-22.md)
- [课时 22:开启 mock](./docs/课时-22.md)

</details>

Expand Down Expand Up @@ -178,6 +178,7 @@ module.exports = function (config) {
* @param {object} env 配置通用变量,可以在 node 跟 web 之间共同使用
* @param {Boolean} filenameHashing 文件名是否使用 hash,当文件发生变动的时候 filename 才会改变
* @param {Boolean} css 配置 css
* @param {Boolean} mock 开启 mock
*/
return {
entry: 'src/main.js',
Expand Down
1 change: 1 addition & 0 deletions box.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module.exports = function (config) {
* @param {object} env 配置通用变量,可以在 node 跟 web 之间共同使用
* @param {Boolean} filenameHashing 文件名是否使用 hash,当文件发生变动的时候 filename 才会改变
* @param {Boolean} css 配置 css
* @param {Boolean} mock 开启 mock
*/
return {
entry: 'src/main.js',
Expand Down
2 changes: 1 addition & 1 deletion docs/课时-22.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 课时 21:开启 mock
## 课时 22:开启 mock

box.config.js

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": "webpack-box",
"version": "1.0.6",
"version": "1.0.7",
"description": "webpack打包器",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit 76e3e52

Please sign in to comment.