diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4e3a338 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: node_js +dist: xenial +os: + - linux + - osx +node_js: + - "12" +addons: + chrome: stable +services: + - xvfb +install: + - yarn install +script: + - yarn e2e + - yarn package diff --git a/CHANGELOG.md b/CHANGELOG.md index a427bf9..90bc19e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.0.1](https://github.com/sourcygen/electron-angular-quick-start/compare/v1.0.0...v1.0.1) (2020-04-30) + + +### Bug Fixes + +* reopening window crash on macos ([f442df7](https://github.com/sourcygen/electron-angular-quick-start/commit/f442df72c4120fb616d21c5c4e245a5eb478f57e)) + + + # 1.0.0 (2020-04-30) ### Features diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4dc464f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Sourcygen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 0a0d592..04c370f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ +Maintenance Status + Build Status + License MIT + PRs Welcome + Tweet + Watch on GitHub + Star on GitHub + + +![Electron Angular Quick Start](https://repository-images.githubusercontent.com/256546297/5eb5eb80-8ad1-11ea-87e4-a93b57e7590d) + ## Overview Depending on your need, putting up [Electron](https://www.electronjs.org/ "Electron") and [Angular](https://angular.io/ "Angular") may require a lot of setup. Fortunately, this simple project will help you **go fast** and directly start building desktop apps. diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..c419263 --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +theme: jekyll-theme-cayman \ No newline at end of file diff --git a/package.json b/package.json index abe2655..b77f31b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "electron-angular-quick-start", - "version": "1.0.0", + "version": "1.0.1", "description": "An Electron and Angular Quick-starter", "repository": "https://github.com/sourcygen/electron-angular-quick-start.git", "author": "Sourcygen", @@ -36,8 +36,8 @@ "build:copy:electron": "cpy '**/*' '../build' --cwd=dist/main --parents && yarn build:copy:static", "build:copy": "cpy package.json dist/build && yarn build:copy:ng && yarn build:copy:electron", "build": "yarn build:dist && yarn build:copy && cd dist/build && yarn --prod", - "package": "yarn build && electron-builder", - "version": "conventional-changelog -p angular -i CHANGELOG.md -s" + "package": "yarn build && electron-builder -p never", + "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md" }, "private": true, "dependencies": {