Just came across this issue. This is the first time I cloned the repo and try to build the project. The first I run npm start, to start the web pack dev server, I faced the following error:
➜ colorable git:(master) ✗ npm start
> colorable@1.0.5 start /home/myuser/Documents/forks/colorable
> npm run dev
> colorable@1.0.5 dev /home/myuser/Documents/forks/colorable
> webpack-dev-server --progress --colors
/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:200
throw error;
^
Error: <css input>:1:20: Failed to find 'basscss-input-range' from /home/myuser/Documents/forks/colorable
in [
/home/myuser/Documents/forks/colorable
]
at <css input>:1:20
at resolveFilename (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:525:11)
at readAtImport (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:281:26)
at transformAtImport (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:148:14)
at Object.tryCatch [as try] (/home/myuser/Documents/forks/colorable/node_modules/postcss-message-helpers/index.js:53:12)
at /home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:147:23
at Array.map (<anonymous>)
at parseStyles (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:146:31)
at /home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:84:30
at LazyResult.run (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:197:24)
at LazyResult.sync (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:183:32)
at LazyResult.stringify (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:214:14)
at LazyResult.get (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:236:25)
at cssnext (/home/myuser/Documents/forks/colorable/node_modules/cssnext/dist/index.js:156:21)
at Object.<anonymous> (/home/myuser/Documents/forks/colorable/docs/data.js:20:8)
at Module._compile (module.js:635:30)
at Object.Module._extensions..js (module.js:646:10)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! colorable@1.0.5 dev: `webpack-dev-server --progress --colors`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the colorable@1.0.5 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/myuser/.npm/_logs/2018-01-15T09_12_15_129Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! colorable@1.0.5 start: `npm run dev`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the colorable@1.0.5 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/myuser/.npm/_logs/2018-01-15T09_12_15_166Z-debug.log
If you read the stack trace you'll find that the problem is a missing dependency: basscss-input-range.
So I installed the dependency: npm i --save-dev basscss-input-range and run the command again npm start. But now I got another error for a missing dependency: basscss-color-input-range
➜ colorable git:(master) ✗ npm start
> colorable@1.0.5 start /home/myuser/Documents/forks/colorable
> npm run dev
> colorable@1.0.5 dev /home/myuser/Documents/forks/colorable
> webpack-dev-server --progress --colors
/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:200
throw error;
^
Error: <css input>:1:51: Failed to find 'basscss-color-input-range' from /home/myuser/Documents/forks/colorable
in [
/home/myuser/Documents/forks/colorable
]
at <css input>:1:51
at resolveFilename (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:525:11)
at readAtImport (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:281:26)
at transformAtImport (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:148:14)
at Object.tryCatch [as try] (/home/myuser/Documents/forks/colorable/node_modules/postcss-message-helpers/index.js:53:12)
at /home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:147:23
at Array.map (<anonymous>)
at parseStyles (/home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:146:31)
at /home/myuser/Documents/forks/colorable/node_modules/postcss-import/index.js:84:30
at LazyResult.run (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:197:24)
at LazyResult.sync (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:183:32)
at LazyResult.stringify (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:214:14)
at LazyResult.get (/home/myuser/Documents/forks/colorable/node_modules/postcss/lib/lazy-result.js:236:25)
at cssnext (/home/myuser/Documents/forks/colorable/node_modules/cssnext/dist/index.js:156:21)
at Object.<anonymous> (/home/myuser/Documents/forks/colorable/docs/data.js:20:8)
at Module._compile (module.js:635:30)
at Object.Module._extensions..js (module.js:646:10)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! colorable@1.0.5 dev: `webpack-dev-server --progress --colors`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the colorable@1.0.5 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/myuser/.npm/_logs/2018-01-15T09_14_56_252Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! colorable@1.0.5 start: `npm run dev`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the colorable@1.0.5 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/myuser/.npm/_logs/2018-01-15T09_14_56_271Z-debug.log
I installed it as well and try the npm start command one more time. This time I was not facing with dependency issues but the webpack failed to comile the project. Bellow I post the stack trace:
I am submitting a possible bug.
Just came across this issue. This is the first time I cloned the repo and try to build the project. The first I run
npm start
, to start the web pack dev server, I faced the following error:If you read the stack trace you'll find that the problem is a missing dependency:
basscss-input-range
.So I installed the dependency:
npm i --save-dev basscss-input-range
and run the command againnpm start
. But now I got another error for a missing dependency:basscss-color-input-range
I installed it as well and try the
npm start
command one more time. This time I was not facing with dependency issues but the webpack failed to comile the project. Bellow I post the stack trace:I read the error:
ERROR in TypeError: Converting circular structure to JSON
but could not come into a conclution on what exactly might be the problem.@jxnblk I mention you cause I read the closed issue #6 and thought you are the right person to ask. Does this issue affect only my machine?