meteorhacks / npm

Complete NPM integration for Meteor
http://meteorhacks.com/complete-npm-integration-for-meteor.html
MIT License
509 stars 43 forks source link

not sure if i am using this correctly... #85

Open joetidee opened 9 years ago

joetidee commented 9 years ago

Have the less package installed in my Meteor app. I also have your package installed and have:

{ "less":"2.0.4" }

in my packages.json file.

On the sever side of my Meteor app., I have:

var less = Meteor.npmRequire('less'); less.modifyVars({ '@canvas': '#5B83AD' });

but I am getting the following run-time error:

Object #<Object> has no method 'modifyVars'

any ideas?