generators
  1. generators

generator-bat

Public

Network

 
AuthorCommitMessageCommit Date
cueedeecueedee
471c98768cechore(project): update and adhere to jshint v2.9.4
cueedeecueedee
56909998522style(generators/app/templates): fix typo
cueedeecueedee
c866bf07926docs(generators/app/templates): specify which API is meant
cueedeecueedee
725e9cd6e4efeat(generators/app): cater for a spot to place test runner reports
cueedeecueedee
98a59c494a0chore(generators/app/templates): add ability to manage lifecycle through npm
cueedeecueedee
655d41c0cd6chore(generators/app/templates): move misplaced entry to its ordered position
cueedeecueedee
49e82c09755docs(generators/app/templates): fix how the `--target` grunt parameter should be specified
cueedeecueedee
0ed42b490e7docs(generators/app/templates): fix typo
cueedeecueedee
fa6030cf8d3fix(generators/model): ensure default service-name validates as a url-path
cueedeecueedee
157a42c8d72fix(generators): fix capitalization of first letter Try to stick with `lodash` string functions to the extend possible. Both `lodash` and `unsercore.string` methods are being used. Both have a `capitalize` method, but these do not do the same thing and so its use is confusing. `lodash.upperFirst` is like `u.s.capitalize` (without arguments). The lodash names more accurately describe their purpose, so prefer those if there is a choice. Ditto for `lowerFirst` vs. `decapitalize`.
cueedeecueedee
c1c8bc8fcccdocs(generators/app/templates): fix typo
cueedeecueedee
d0be3f8f4a9feat(generators/view/templates): add an `events` property
cueedeecueedee
0041b4f1068docs(generators/*/templates): fix `@static` declarations for `@property`-s The best practice of the day is that a `@property` should not be `@static` unless it really is a property on the class itself, that is, not on its prototype. This leaves singleton objects in a bit of a gray area. Strictly, a singleton object still is an instance of a class and so its `@property`-s should not be declared `@static`. On the other hand its `@class` *does* get declared `@static` itself in order to signi...
cueedeecueedee
06cd7f1f9c9feat(generators/app/templates): add an environment-ribbon view showing the build's briefing details for debug type builds
cueedeecueedee
726a29a8692refactor(generators/app/templates): reorganize how Handlebars helpers and partials could be set up. Add an initial, useful `moment` helper illustrating this setup.
cueedeecueedee
1241f1bf11cfeat(generators/app/templates): instruct `yuidoc` to also examine the `vendor` folder for documentation.
cueedeecueedee
299a2065cecfeat(generators/model): add service API endpoint fitting to a scaffolded model
cueedeecueedee
a04056c87e9feat(generators/api): add a subgenerator for creating API instances
cueedeecueedee
5ca66f2c9ffstyle(generators): normalize, simplify, colorize and/or fix phrasing of options and questions Factor out generators` descriptions.
cueedeecueedee
8a6aad614f1fix(generators/collection): fix deriving default model name from option-derived collection name
cueedeecueedee
16a382df1eefix(generators/app): fix default `copyrightOwner` retrieval
cueedeecueedee
7fa2653d89dfix(generators/view): fix ordered insert Fix not exiting search when correct position was found. Make insertion aware of indentation context. Refactor already-done detection.
cueedeecueedee
31a41292cb2feat(generators/app/templates): add separate `deploy` section
cueedeecueedee
0c663655662fix(generators/app/templates): fix contributing/setup documentation being too biased towards git flow model.
cueedeecueedee
b5af2025ee6chore(project): fix contributing/setup instructions `git clone` doesn't automatically set up a local tracking branch for `master` because `develop` is the default branch now. This will leave us checked out out in `develop`. Doing a `git checkout master` will fix this. But now `git flow init -d` doesn't leave us checked out in `develop` as it dit before. A `git checkout develop` will fix that, either before or after. But doing it before `git flow init -d` will ensure that the user will still ...
cueedeecueedee
86017176b9afeat(app generator/templates): add `CHANGELOG.md` to package manifest
cueedeecueedee
e8b92231efbchore(project): add `CHANGELOG.md` to package manifest
cueedeecueedee
7480bef4545refactor(app generator/templates/api): allow multiple API's Remove dependency on `madlib-settings` as a registry for service API endpoints.
cueedeecueedee
4a1743538b2style(app generator/templates): tweak whitespace and quote-style
cueedeecueedee
fff13b28e71feat(model generator/templates): add `defaults` property to template
cueedeecueedee
2e8431b214ddocs(project): harden syntax for less permissive markdown parsers
cueedeecueedee
0d642421debdocs(app generator/templates): harden syntax for less permissive markdown parsers
cueedeecueedee
cfeb477cd96feat(subgenerators): prepare for using Backbone derivatives
cueedeecueedee
20f95d33923feat(app generator): prune npm packages after install This gets rid of any extraneous packages; perhaps left over from previous generator attempts.
cueedeecueedee
5f12dc5c33achore(app generator/templates): add ability to specify grunt tasks through an environment variable The default grunt task will run tasks from the `GRUNT_TASK` variable if specified or the `dist` task (the previous default) instead.
cueedeecueedee
af43d59b5e8style(build): remove some lint
cueedeecueedee
c3dba251d6edocs(project): fix heading hierarchy
cueedeecueedee
b3d739b7487test(app generator/templates): add unit tests for `settings-environment`
cueedeecueedee
07b4afabfe0feat(generators): add mixin method for symlinking files within `this.destinationRoot()`
cueedeecueedee
d974ed43474feat(app generator): add option to let app load jQuery through a CDN
cueedeecueedee
925d1caadf3feat(app generator,test): replace mocha/chai based testing framework with a combo of karma, jasmine, phantomjs and browserify
cueedeecueedee
b01860a2e54chore(app generator): address npm 2's "npm3 won't install peer-dependencies" warnings
cueedeecueedee
1c35d2f68ddfeat(app generator): add means to learn the current build's briefing details
cueedeecueedee
54e05ecb826style(app generator): conform to yuidoc documentation style
cueedeecueedee
7d9f5995994feat(app generator): add ability to retrieve a build distribution target-environment's settings at run-time Replace madlib-hostmapping based solution.
cueedeecueedee
8ee884bf94dfeat(app generator): include a default api-services collection To be used as a place to declare known api-services
cueedeecueedee
2025943bfbdfeat(collection generator): add crosslinks between collection and model.
cueedeecueedee
58ac9e15c5ffeat(model generator): add a model schema as a standard place to list and document your model's ttributes
cueedeecueedee
0b10652041ffeat(debug): do a smarter insertion of the livereload url This will make livereloading also work from virtualbox machines reaching out to your local machine.
cueedeecueedee
ca4d091f1a5feat(app generator): include tests on debug builds