1
問題があります。私は実行する:npm run stylelint
。私のcmdは指定されたファイルグロブパターンがファイルと一致しません
[email protected] stylelint E:\Mountain_Mental
> stylelint 'public/css/**/*.scss'
Error: Files glob patterns specified did not match any files
at E:\Mountain_Mental\node_modules\stylelint\dist\standalone.js:83:19
単一引用符が動作しないのはなぜ? – stevemao
@stevemao一般にシェル言語では、二重引用符は特殊文字の拡張/補間を可能にしますが、一重引用符は拡張を避けるためにリテラル文字列を提供します(つまり、 '*'文字を意味します)。 http://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html –
コメントを残した後、私はそれについて考えていました:)しかし、なぜ文字通り '*'文字を渡すのがMacでうまくいくのでしょうか? LinuxではなくWindowsではないのですか?私はリテラル文字列が 'node-glob'に渡ると思ったのですか?どうもありがとう! – stevemao