zoukankan      html  css  js  c++  java
  • 踩坑了,当前目录问题

    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:LSRMLSRM.AppWeb.App ode_modules.2.1.0-beta.22@webpackuildinmodule.js
        Used by 2 module(s), i. e.
        E:LSRMLSRM.AppWeb.App ode_modules.1.4.1@punycodepunycode.js
    * e:LSRMLSRM.AppWeb.App ode_modules.2.1.0-beta.22@webpackuildinmodule.js
        Used by 2 module(s), i. e.
        e:LSRMLSRM.AppWeb.App ode_modulesmomentmoment.js
    Child html-webpack-plugin for "index.html":
             Asset     Size  Chunks       Chunk Names
        index.html  7.12 kB       0       
    webpack: Compiled with warnings.
    --------------------------------------------------------------------
    原因是当前目录为: e:LSRMLSRM.AppWeb.App
    应为: E:LSRMLSRM.AppWeb.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盘,解决问题。

    此问题google,百度都不好使

     
  • 相关阅读:
    Tarjan算法求解桥和边双连通分量(附POJ 3352 Road Construction解题报告)
    无向图求点割集的算法
    hdu 2121无根最小树形图要建一个虚拟节点
    hdu 1576扩展欧几里得算法
    欧几里德算法的扩展-求解不定方程
    hdu 3072 强连通+缩点+最小树形图思想
    1352 集合计数 扩展欧几里德算法
    1247 可能的路径 逆向思维
    Atcoder B
    C. Timofey and a tree 观察题 + dfs模拟
  • 原文地址:https://www.cnblogs.com/heguo/p/6573863.html
Copyright © 2011-2022 走看看