Skip to content

Commit

Permalink
fix: revert "6059743 unpin Meteor fourseven for better compatibility"
Browse files Browse the repository at this point in the history
It's a mistake of my own, I did not understood that Meteor will use versions to get "at least" the given version on installation.

Removing it make Meteor searching for fourseven:[email protected] and break Sass compilation.

Note: we may need to update to this package to Meteor 1.7.0.
  • Loading branch information
ncoden committed Jun 12, 2018
1 parent 4cc86b2 commit 91b1303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Package.describe({

Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.imply('fourseven:scss');
api.use(['ecmascript', 'jquery', 'fourseven:scss'], 'client');
api.imply('fourseven:scss@3.4.1');
api.use(['ecmascript', 'jquery', 'fourseven:scss@3.4.1'], 'client');
api.addFiles('dist/motion-ui.js', 'client');
api.addFiles([
'src/_settings.scss',
Expand Down

0 comments on commit 91b1303

Please sign in to comment.