Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

v0.5.0

Latest
Compare
Choose a tag to compare
@thescientist13 thescientist13 released this 03 Mar 01:11
· 2 commits to master since this release

Overview

  • Upgrades to LitElement 2.0!
  • Big refactor to the installer, but also added new features like:
    • --help
    • --version
  • Now have CEA use Yarn to install your project's dependencies on init, by passing --yarn
  • Added unit tests for the installer
  • Fixed manifest.json application faviicon

Known Issues

N / A

Changelog

https://github.com/ProjectEvergreen/create-evergreen-app/issues?utf8=%E2%9C%93&q=label%3A0.5.0

$ git diff 0.4.2 0.5.0 --stat
 .circleci/config.yml                               |    25 +-
 .eslintrc                                          |   400 +-
 .github/CONTRIBUTING.md                            |    31 +-
 .gitignore                                         |     6 +-
 README.md                                          |    73 +-
 package-lock.json                                  | 14839 +-----------------
 package.json                                       |   103 +-
 tasks/cea-install.js                               |    83 +-
 tasks/filter-files.js                              |    13 +
 .browserslistrc => template/.browserslistrc        |     0
 .editorconfig => template/.editorconfig            |     0
 template/.eslintrc                                 |   201 +
 .gitattributes => template/.gitattributes          |     0
 template/.gitignore                                |     5 +
 template/README.md                                 |    21 +
 babel.config.js => template/babel.config.js        |     4 +-
 karma-test-shim.js => template/karma-test-shim.js  |     0
 karma.conf.js => template/karma.conf.js            |     0
 lws.config.js => template/lws.config.js            |     0
 template/package-lock.json                         | 15691 +++++++++++++++++++
 template/package.json                              |    53 +
 postcss.config.js => template/postcss.config.js    |     0
 {src => template/src}/app/app.css                  |     0
 {src => template/src}/app/app.js                   |     2 +-
 {src => template/src}/components/header/header.css |     0
 {src => template/src}/components/header/header.js  |     4 +-
 .../src}/components/header/header.spec.js          |     0
 {src => template/src}/components/header/logo.png   |   Bin
 {src => template/src}/favicon.png                  |   Bin
 {src => template/src}/index.html                   |    10 +-
 {src => template/src}/index.js                     |     0
 {src => template/src}/pages/home/home.css          |     0
 {src => template/src}/pages/home/home.js           |     2 +-
 .../webpack.config.common.js                       |     8 +-
 .../webpack.config.develop.js                      |    10 +-
 .../webpack.config.prod.js                         |     5 +-
 yarn.lock => template/yarn.lock                    |  1986 ++-
 test/setup.js                                      |    35 +
 test/test.js                                       |    80 +
 63 files changed, 18614 insertions(+), 15476 deletions(-)

(GitHub pages docs/ changes omitted)