0

さて、最初にこれを行いました。

>grunt sass
Running "sass:dist" (sass) task
Warning:
You need to have Ruby and Sass installed and in your PATH for this task to work.
More info: https://github.com/gruntjs/grunt-contrib-sass
 Use --force to continue.

Aborted due to warnings.

そして、これは理にかなっていると思い、ルビーへのパスを追加する必要があるので、そうしました。次に、ルビーのバージョンを確認したところ、何かが返されました

>ruby -v
ruby 2.2.5p319 (2016-04-26 revision 54774) [x64-mingw32]

これは、ルビーがインストールされていることを意味します。これで grunt sass が機能するはずですが、機能せず、同じ古いメッセージが表示されます。これです:

>grunt sass
Running "sass:dist" (sass) task
Warning:
You need to have Ruby and Sass installed and in your PATH for this task to work.
More info: https://github.com/gruntjs/grunt-contrib-sass
 Use --force to continue.

Aborted due to warnings.

アップデート

実行すると次のようになりますgrunt-sass-force

>grunt sass --force
Running "sass:dist" (sass) task
Warning:
You need to have Ruby and Sass installed and in your PATH for this task to work.
More info: https://github.com/gruntjs/grunt-contrib-sass
 Used --force, continuing.
'sass' is not recognized as an internal or external command,
operable program or batch file.
Warning: Exited with error code 1 Used --force, continuing.

Done, but with warnings.
4

2 に答える 2

1

sassでインストールする必要があるようですgem install sass。gem がなければ、Ruby で sass を操作することはできません。

于 2016-08-30T09:46:52.150 に答える