-
Notifications
You must be signed in to change notification settings - Fork 19
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
Compatible with meteor 1.3? #43
Comments
hey @JSantana90 the generator currently makes a huge mess of meteor1.3 i've created a new branch to work on compatibility |
ok, I'm currently studying the best way to structure a meteor 1.3 app, I will try to help in my spare time. |
that would be great! |
Hi, I think it has to do with the modules package. As it forces you to follow best practices. Which isn't automatically loaded as part of the update to 1.3 as of 1.3.2.2. I successfully updated my project to 1.3.2.2 without the issues you see above and I was seeing before. Let me know if I can help test, I created a fresh project and updated without issues to confirm it's working. Tested with: After that, I did meteor update and removed the dotansimha:accounts-ui-angular package as it is still relying on angular 1.2.7 and remove accounts.ui dependency from app.ng.js Result attached. |
hi Hasnain that's really interesting |
@huss22 @ndxbxrme
Best choice is to remove the question. |
@donedgardo I think the issue I was having was more related to the modules package in meteor 1.3 and dotansimha:accounts-ui-angular, but agree with you on removing bower as well from the generator for 1.3 as it's no longer supported. But I would suggest keeping the question open until the generator can successfully handle 1.3? |
@huss22 working on it atm, goint to change to angular-babel that comes with ng-annotate and use npm import syntax for angular, angular-meteor |
I took the work done already by Edgardo Carreras @donedgardo to remove Bower, and took the last references out. When you first run the generator, it does a "meteor create", which unfortunately creates a main.js, main.html and main.css, which is part of the problem. I have forked the repo to https://github.com/mikkelking/generator-angular-meteor which directly loads Meteor 1.3.2.4 This still blows up, but can be fixed with the following steps:
(This set is for angular-material, your packages may/will be dfferent) If you stay with the original repo, the above approach still works, so getting to Meteor 1.3 isn't too hard. If anyone knows how to fix/automate these steps please let me know how :) Cheers Mike |
I took the above and integrated them into the generator, so it works smoothly now. I have done a pull request to get these changes merged. |
hey guys |
Thanks Kieron, good work, any more changes in the pipeline? |
That's a pretty old version of angular it is expecting. It will be an I ran the new version up, and it generates new pages ok, but doesn't Mike On 17/06/2016 4:57 PM, kieron wright wrote:
|
i love the idea of auto generating menus and it's something i've considered before but i came to the conclusion that they are out of the scope of this project. the angular version warning only rears it's ugly head when user authentication is selected so the problem lies somewhere in accounts-password, dotansimha:accounts-ui-angular or accounts.ui |
Hello there.
With the release of Meteor 1.3, I was wondering if this generator is compatible with it as I've been using it with Meteor 1.2.
Thanks!
The text was updated successfully, but these errors were encountered: