-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Isotope discussion Program3r <-> dandv #1
Comments
I just re-tested this and it was an issue with my (docker) container. I created a new one and was able to use 0.9.3 packages in a 1.0 application. versionFrom is supposed to control what core packages are loaded based on that version of Meteor you lock in. I assumed from the behavior of my container that it was locking applications to the version of that package by not resolving versions correctly. I've since violently deleted that container. I don't have the issue anymore. |
"violently deleted* :-)
|
|
Thank you. Let's say
|
Actually an explicit package.js: Package.onUse(function (api) {
api.versionsFrom('[email protected]');
api.use([
'jquery',
'twbs:[email protected]',
'fortawesome:[email protected]'
], where); C:\prg\met\test>meteor add summernote:summernote
Could not satisfy all the specified constraints:
Error: conflict: constraint [email protected] is not satisfied by 1.0.1-win.0.
Constraints on jquery come from:
<top level>
[email protected]
[email protected] -> [email protected]
summernote:[email protected]
C:\prg\met\test>meteor add summernote:[email protected]
Could not satisfy all the specified constraints:
Error: conflict: constraint [email protected] is not satisfied by 1.0.1-win.0.
Constraints on jquery come from:
<top level>
[email protected]
[email protected] -> [email protected]
summernote:[email protected] If I change
The magic bullet seems to be
|
Hey @Program3r, let's move this discussion here, since it got quite specific.
Here's my package code for bundling up and testing Isotope
To be honest, I've read through docs.meteor.com and Differential's dissection of the Package api and don't understand exactly what
versionsFrom
does.That doesn't suggest that if a package has
api.use('0.9.0')
, it can't be used with newer Meteor apps, as you seemed to imply:The text was updated successfully, but these errors were encountered: