踩坑了,當前目錄問題

vscode
的angularjs2.0項目,編譯後有警告:
-----------------------------------------------------------------------
WARNING in (webpack)/buildin/module.js
There are multiple modules with names that only differ in casing.
This can lead to unexpected behavior when compiling on a filesystem with other case-semantic.
Use equal casing. Compare these module identifiers:
* E:\LSRM\LSRM.App\Web.App\node_modules\.2.1.0-beta.22@webpack\buildin\module.js
    Used by 2 module(s), i. e.
    E:\LSRM\LSRM.App\Web.App\node_modules\.1.4.1@punycode\punycode.js
* e:\LSRM\LSRM.App\Web.App\node_modules\.2.1.0-beta.22@webpack\buildin\module.js
    Used by 2 module(s), i. e.
    e:\LSRM\LSRM.App\Web.App\node_modules\moment\moment.js
Child html-webpack-plugin for "index.html":
         Asset     Size  Chunks       Chunk Names
    index.html  7.12 kB       0       
webpack: Compiled with warnings.
--------------------------------------------------------------------
緣由是當前目錄爲: e:\LSRM\LSRM.App\Web.App\
應爲: E:\LSRM\LSRM.App\Web.App\  注意,驅動器符E盤應爲大寫
因此:
tasks.json 改成:
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "cmd",
    "isShellCommand": true,
    "args": ["/c C: && cd E:\\LSRM\\LSRM.App\\Web.App && E: && ng serve --host 127.0.0.1 --port 2016 --live-reload-port 49153"],
    "showOutput": "always"
}

原理,當前目錄切換回C盤,更改E盤當前目錄,切換回E盤,解決問題。html

此問題google,百度都很差使node

相關文章
相關標籤/搜索