-
Notifications
You must be signed in to change notification settings - Fork 13
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
support for non-client-side-applications #8
Comments
What build tasks do you require for your server? I'm curious, in my experience build tasks are not often needed for servers as you just need to run them. I do happen to be working on a web app myself however which will need an API to go along with it. It might be an idea to add a Regarding your question, what do you mean with 'module'? An Angus app? You don't need to configure a |
Not a server. NPM libraries. Just modules. Think something like If Angus could be used in this context, it'd have to change its behavior so that Angus was optional. Perhaps what I'm looking for is a somewhat different solution that doesn't exist yet. |
Right, but what kind of build tasks would you need for your module? Could you be more specific and give an example? It's meant specifically for frontend apps, and it relies on a Do you want to have custom build tasks and are tired of creating them over? If so, I am going to make an option soon where you can set custom tasks for angus to execute. |
@nickjanssen Yes. Things like Grunt tasks to run tests, check jshint, generate documentation, etc., etc. |
This seems like a good idea.
Why is it limited to client-side code?
Can I configure Angus in a way that would allow me to use it for NPM libraries I write?
Is it even usable in this context? Would someone developing my module have to install Angus to build it? Or is this really just for production applications? I don't understand if Angus is required to build Angus applications, or if each application has its own
Gruntfile.js
configured, and Angus just keeps them updated?I have the exact same problem with my server-side code; many Gruntfiles, many configs, old tasks fall out of favor. Tried writing a Yeoman generator, but that's a pain and modules fall out-of-date too quickly.
The text was updated successfully, but these errors were encountered: