VS Code 不允许我使用 sass --watch 编译 sass
VS Code won't let me compile sass using sass --watch
我正在尝试使用终端编译 sass。我已经安装了 node.js,并且在使用 Live Sass 时没有任何问题,但是,每次我尝试编译我的 sass 时,我都会得到这个:
sass : The term 'sass' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ sass -watch scss:css
+ ~~~~
+ CategoryInfo : ObjectNotFound: (sass:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我正在尝试使用 @use
,我知道 Live Sass 编译器不会让我这样做。
我做错了什么吗?或者我需要安装的其他东西?
哦,我已经使用 npm install sass
.
安装了 sass
您有 2 个选择:
尝试全局安装
npm install -g node-sass
将此添加到 package.json 文件
"devDependencies": {
"node-sass": "4.5.0"
},
"scripts" : {
"node-sass": "node-sass --output-style compressed -o dist/css src/scss"
}
之后,运行:
npm i;npm run node-sass;
注意:有几种方法可以将 SASS 与 VS Code 一起使用。但请确保使用最实际的版本 运行 Dart SASS
。要通过 NPM 安装它,这里有一些信息:
这里有一些关于通过安装 VS 代码扩展来使用 SASS 的信息,这可能会让使用起来更舒适一些:
我正在尝试使用终端编译 sass。我已经安装了 node.js,并且在使用 Live Sass 时没有任何问题,但是,每次我尝试编译我的 sass 时,我都会得到这个:
sass : The term 'sass' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ sass -watch scss:css
+ ~~~~
+ CategoryInfo : ObjectNotFound: (sass:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
我正在尝试使用 @use
,我知道 Live Sass 编译器不会让我这样做。
我做错了什么吗?或者我需要安装的其他东西?
哦,我已经使用 npm install sass
.
您有 2 个选择:
尝试全局安装
npm install -g node-sass
将此添加到 package.json 文件
"devDependencies": { "node-sass": "4.5.0" }, "scripts" : { "node-sass": "node-sass --output-style compressed -o dist/css src/scss" }
之后,运行:
npm i;npm run node-sass;
注意:有几种方法可以将 SASS 与 VS Code 一起使用。但请确保使用最实际的版本 运行 Dart SASS
。要通过 NPM 安装它,这里有一些信息:
这里有一些关于通过安装 VS 代码扩展来使用 SASS 的信息,这可能会让使用起来更舒适一些: