Reputation: 781
I have a node project and when i start the command line npm install, i have this error :
Message: node_modules\compass-mixins\lib\compass\functions_lists.scss Error: Functions may not be defined within control directives or other mixins. on line 81 of node_modules/compass-mixins/lib/compass/functions/_lists.scss
@function compact($vars...) {
On my last project, with the same package.json i don't have any error. Have you a solution ?
Thank you
Upvotes: 0
Views: 1497
Reputation: 101
You have two options:
npm install [email protected]
."node-sass": "3.4.2"
into your package.json
and then run npm install
.Upvotes: 1