I added fourseven:scss to my packages, but it doesn't seem to be working

The documentation says:

If you want to use it for your package, add it in your package control file’s onUse block:

Package.onUse(function (api) {

api.use(‘fourseven:scss’);

});

I am not sure where the package control file is located. From what I read it should be in a file called package.js in the folder for the fourseven:scss package. I cannot find this. Any help would be appreciated.

That line assumes that you are building your application in a atmosphere package which you are probably not doing. Just add it using the cli:

meteor add fourseven:scss

The only thing you need to do besides this is append the .scss file extension and it should work.

1 Like