Closed marchage closed 5 years ago
Helloooow,
If you change this line in package.json:
"prebuild:css": "rimraf lib/css && mkdir -p lib/css",
to the following:
"prebuild:css": "rimraf lib/css && mkdirp lib/css",
...and make mkdirp a dev-dependency (npm install --save-dev mkdirp), the build command will run on Windows 10 with npm command run from powershell. Haven't tested that package (mkdirp) on linux or mac.
npm install --save-dev mkdirp
Hope this helps, Marc
Sure, seems like a reasonable fix.
Helloooow,
If you change this line in package.json:
to the following:
...and make mkdirp a dev-dependency (
npm install --save-dev mkdirp
), the build command will run on Windows 10 with npm command run from powershell. Haven't tested that package (mkdirp) on linux or mac.Hope this helps, Marc