kn-cli 1.0.16 → 1.0.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -115,8 +115,8 @@ module.exports = {
115
115
  },
116
116
  resolve: {
117
117
  modules: [
118
- path.resolve(webpackPath, 'node_modules'),
119
118
  path.resolve(dirname,'node_modules'),
119
+ path.resolve(webpackPath, 'node_modules'),
120
120
  'node_modules',
121
121
  ],
122
122
  extensions: ['.jsx', '.js', '.json'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kn-cli",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/readme.md CHANGED
@@ -17,6 +17,9 @@
17
17
 
18
18
 
19
19
  # 更新日志
20
+ * 1.0.17
21
+ 1. 调整node_modules搜索顺序
22
+
20
23
  * 1.0.16
21
24
  1. 调整node_modules搜索顺序
22
25