0

my で次のスクリプトを使用してsassmyをコンパイルしようとしています:node-sasspackage.json

"node-sass": "node-sass --output-style compressed 'src/scss/styles.scss' 'dist/css/bundle.min.css'",

私のstyles.scss

@import "bourbon";
@import "neat";

body {background: red;}

しかし、実行するnpm run node-sassと次のエラーが発生します。

  "formatted": "Error: File to import not found or unreadable: bourbon\n       Parent style sheet: /Users/deangibson/Desktop/personal_site/src/scss/styles.scss\n        on line 1 of src/scss/styles.scss\n>> @import \"bourbon\";\n   ^\n",
  "message": "File to import not found or unreadable: bourbon\nParent style sheet: /Users/deangibson/Desktop/personal_site/src/scss/styles.scss",
  "column": 1,
  "line": 1,
  "file": "/Users/deangibson/Desktop/personal_site/src/scss/styles.scss",
  "status": 1
}

私のプロジェクト構造は次のようになります。

ここに画像の説明を入力

依存関係に関しては、node は node_modules を自動的にチェックインするべきではありませんか? ここで何が間違っているのかわかりません...

4

1 に答える 1