This repository was archived by the owner on Feb 18, 2021. It is now read-only.
Releases: the-front/angularjs-ee-boilerplate
Releases · the-front/angularjs-ee-boilerplate
v1.4.0
- ISSUE #25 - Use Angular UI Route instead Angular.js $route
- vendors lib's
- angular.js updated to v1.3.3
- angular ui router added v0.2.11
v1.3.0
renamed from: require.load.js to package.js
- code style updated to : [GitHub] johnpapa/angularjs-styleguide
ISSUE #32
v1.2.0
IE 8 support dropped
vendors lib's updated
- angular.js v1.3.1
- bootstrap v3.3.0
- jquery v2.1.1
- lokijs v1.01
- require.js v2.1.15
v1.1.1
Repository moved from [GitHub] erkobridee user to [GitHub] the-front organization
v1.1.0
change code syntax from:
// AMD Style
define(['angular'], function() {
return {
/* API for this module */
};
});
to:
// CommonJS Style
define(function(require) {
var angular = require('angular');
return {
/* API for this module */
};
});
docs/
- README - infos and instructions
toos/
- html2js grunt task config updated
- templates code syntax updated
src/
- code syntax updated for:
v1.0.0
docs/
- README - infos and instructions
toos/
- package.json updated and added new dev dependencies for Protractor
- Protractor grunt task config defined
- Gruntfile.js - grunt tasks workflow reviewed and updated
- config.protractor.js - configs for Protractor
- templates for code generation updated with e2e tests code
src/
- e2e tests code defined for:
v0.7.0
docs/
- README - infos and instructions
toos/
- package.json updated and added new dev dependencies for karma runner and coverage report
- karma grunt task config defined
- Gruntfile.js - grunt tasks workflow reviewed and updated
- config.js - global tools configuration file created
- templates for code generation updated with tests code with 100% of coverage
src/
- tests code defined for:
v0.6.1
src/shared/mock
updated
- added support to define id as string
src/vendor
updated
- jquery v 1.11.1
- bootstrap v 3.2.0
- angular.js v 1.2.22
- require.js v 2.1.14
- html5shiv v 3.7.2
- respond.js v 1.4.2
toos/
updated
- grunt-contrib-less v 0.11.4
docs/
updated
- defined sub directories by language
- en > english
- pt-Br > brazilian portuguese
v0.6.0
/src
- added angular ui bootstrap v0.11.0 library
- change old pagination code to use angular ui bootstrap pagination directive, for example: bookmarks/templates/list.html | bookmarks/controllers/list.js
/shared/mock
reviewed- datasource.js created to encapsulate common behaviors and manipulate Lokijs collections, and simplify mock data definition for example: bookmarks/mock/data.js
/tools
- Grunt
Gruntfile.js
- resolved an issue problem, where connect proxy plugin was not loading with jit-grunt- Created a library and custom task for generate files basead on templates files
- questions flow : /helpers/grunt/lib/generate/questions.js
- generate engine : /helpers/grunt/lib/generate/engine.js
- grunt generate config file : /helpers/grunt/config/generate.js
- command:
grunt generate
|> that will run an interactive terminal with some questions - available templates:
- Angular.js
- Grunt config file
v0.5.2
/tools
and /publisher
grunt reviewed and updated:
- loading tasks performance improvement
- old plugin load-grunt-config removed