Releases: thegreenhouseio/angularjs-webapp-seed
Releases · thegreenhouseio/angularjs-webapp-seed
v0.2.2
Overview
Fixes code coverage being reported incorrectly and adds ESLint to root JavaScript files. Also, the testing task has now changed to yarn run test
Known Issues
None at this time
Changelog
#32 - code coverage not reporting correctly
$ git diff 0.2.1 0.2.2 --stat
.babelrc | 17 +++++++++++++++++
README.md | 17 ++++++++---------
bin/build.sh | 3 ++-
karma.conf.js | 35 +++++++++++++++++++++++++----------
package.json | 7 ++++---
webpack.config.common.js | 44 ++++++++++++--------------------------------
webpack.config.develop.js | 10 +---------
webpack.config.prod.js | 41 ++++++++++++++++++++++++++++++-----------
yarn.lock | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
9 files changed, 165 insertions(+), 80 deletions(-)
v0.2.1
Overview
Fixes a bug with the production build not working correctly and corrects the resolve example used in the Home view.
Known Issues
#28 - differing button styles between develop and production builds
Changelog
$ git diff 0.2.0 0.2.1 --stat
package.json | 4 ++--
src/components/bootstrap/bootstrap.run.js | 1 +
src/views/home/home.controller.js | 5 ++---
3 files changed, 5 insertions(+), 5 deletions(-)
v0.2.0
Overview
Formalizes more conventions between views and components with examples of
angular.controller
angular.config
angular.run
Also includes corresponding README updates and other minor improvements.
Known Issues
#26 - differing button styles between develop and production builds
Changelog
https://github.com/thescientist13/angularjs-webpack-seed/projects/1
$ git diff 0.1.0 0.2.0 --stat
README.md | 31 +++++++++++++++----------------
package.json | 4 ++--
src/components/bootstrap/bootstrap.component.js | 3 ++-
src/components/bootstrap/bootstrap.config.js | 6 ++++++
src/components/bootstrap/bootstrap.module.js | 4 ++++
src/components/bootstrap/bootstrap.run.js | 15 +++++++++++++++
src/components/footer/footer.component.js | 4 +++-
src/components/header/header.component.js | 3 ++-
src/components/navigation/navigation.component.js | 3 ++-
src/index.js | 9 +--------
src/views/home/home.component.js | 25 -------------------------
src/views/home/home.config.js | 19 +++++++++++++++++++
src/views/home/home.controller.js | 8 ++++++++
src/views/home/home.module.js | 11 ++---------
src/views/home/{home.component.html => home.template.html} | 2 ++
src/views/users/users.config.js | 19 +++++++++++++++++++
src/views/users/{users.component.js => users.controller.js} | 13 +------------
src/views/users/users.module.js | 12 +++---------
src/views/users/{users.component.html => users.template.html} | 0
19 files changed, 106 insertions(+), 85 deletions(-)