meteor - Error when adding package accounts-ui-bootstrap-dropdown -
i'm trying add package meteor project using meteorite using command:
mrt add accounts-ui-bootstrap-dropdown
and command shows me error:
tag: https://github.com/erobit/meteor-accounts-ui-bootstrap-dropdown.git#v0.1.5 fs.js:730 return binding.symlink(preprocesssymlinkdestination(destination, type), ^ error: enotdir, not directory '/users/arturcarvalho/projects/effinlist/.meteor/packages/accounts-ui-bootstrap-dropdown' @ object.fs.symlinksync (fs.js:730:18) @ /usr/local/lib/node_modules/meteorite/lib/dependencies/package.js:129:10 @ /usr/local/lib/node_modules/meteorite/lib/sources/git.js:75:15 @ gitsource._load (/usr/local/lib/node_modules/meteorite/lib/sources/git.js:120:12) @ /usr/local/lib/node_modules/meteorite/lib/sources/git.js:73:18 @ /usr/local/lib/node_modules/meteorite/lib/sources/git.js:89:5 @ /usr/local/lib/node_modules/meteorite/lib/sources/git.js:216:5 @ childprocess.exithandler (child_process.js:635:7) @ childprocess.eventemitter.emit (events.js:98:17) @ maybeclose (child_process.js:735:16)
if run mrt list after this, shows me following error:
while building package `accounts-ui-bootstrap-dropdown`: error: no such package: 'accounts-urls'
i can't uninstall package , tried reinstall meteorite no luck. me this? i'm using max os x.
thanks!
are on meteor 0.6.5?
if it's because package hasn't been updated yet work version, there lot of api changes in way format package.js file , packages on meteorite haven't been updated adhere new style yet break.
recommendation:
1 use command downgrade , wait few weeks until atmosphere packages corrected
"the way downgrade is:
$ meteor update --release 0.6.4.1
... won't undo other change updating app 0.6.5 did. you'll want edit ".meteor/packages" file , remove line "standard-app-packages". "
2 send pr package creator updated package.js file adhering api rules listed here
https://github.com/meteor/meteor/blob/devel/history.md
file needs updated:
https://github.com/erobit/meteor-accounts-ui-bootstrap-dropdown/blob/master/package.js
Comments
Post a Comment