SASS Build:CSS in Package.json

Hi , im new to coding so i was trying to run the build:css script in my package.json file i end up with the following error msg, i would appreciate if anyone can tell me how to fix it

Input Error: You must pass a valid list of files to parse
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! portfolio@1.0.0 prefix:css: postcss --use autoprefixer -b 'last 10 versions' CSS/style.concat.css -o CSS/style.prefix.css
npm ERR! Exit status 1

"scripts": {
    "watch:sass": "node-sass SASS/main.scss CSS/style.css -w",
    "compile:sass": "node-sass SASS/main.scss CSS/style.comp.css",
    "devserver": "live-server",
    "start": "npm-run-all --parallel devserver watch:sass",
    "concat:css": "concat -o CSS/style.concat.css CSS/style.comp.css",
    "prefix:css": "postcss --use autoprefixer -b 'last 10 versions' CSS/style.concat.css -o CSS/style.prefix.css",
    "compress:css": "node-sass CSS/style.prefix.css CSS/style.css --output-style compressed",
    "build:css": "npm-run-all compile:sass prefix:css compress:css"

  },
  "author": "Mohamed D",

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.