Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
adenvt committed Aug 26, 2017
2 parents 851877c + 8fcd4bd commit d430a9c
Show file tree
Hide file tree
Showing 40 changed files with 9,046 additions and 673 deletions.
42 changes: 42 additions & 0 deletions .compilerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"env": {
"development": {
"application/javascript": {
"presets": [
[
"env",
{
"targets": {
"electron": "1.6"
}
}
],
"react"
],
"plugins": [
"transform-async-to-generator"
],
"sourceMaps": "inline"
}
},
"production": {
"application/javascript": {
"presets": [
[
"env",
{
"targets": {
"electron": "1.6"
}
}
],
"react"
],
"plugins": [
"transform-async-to-generator"
],
"sourceMaps": "none"
}
}
}
}
40 changes: 40 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"extends": [
"standard",
"plugin:vue/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"env": {
"node": true,
"mocha": true
},
"plugins": ["import", "html"],
"parserOptions": {
"ecmaVersion": 8
},
"settings": {
"html/indent": "+4",
"html/html-extensions": [".html"]
},
"rules": {
"curly": ["error", "multi-or-nest"],
"comma-dangle": ["error", "always-multiline"],
"prefer-const": "error",
"import/extensions": "off",
"import/order": ["error", { "newlines-between": "never" }],
"import/no-extraneous-dependencies": "off",
"import/no-unresolved": ["error", { "ignore": ["electron"] }],
"linebreak-style": ["error", "unix"],
"key-spacing": ["error", {
"align": {
"beforeColon": false,
"afterColon": true,
"on": "colon"
},
}],
"quote-props": ["error", "as-needed"],
"object-curly-spacing": ["error", "always"],
"no-var": "error"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ build/Release
# Dependency directory
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules
out
80 changes: 80 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
os:
- linux
dist: trusty
sudo: false
language: node_js
node_js:
- lts/*
matrix:
include:
- env: BUILD_ARCH=x64
addons:
apt:
packages:
- rpm
- dpkg
- fakeroot
- libudev-dev
- libxss1
- libgtk2.0-0
- libgconf-2-4
- libnss3
- libxtst6
- libasound2
- libusb-0.1-4
- libusb-1.0-0
- env: BUILD_ARCH=ia32
addons:
apt:
packages:
- rpm
- dpkg
- fakeroot
- multiarch-support
- libudev-dev:i386
- libxss1:i386
- libgtk2.0-0:i386
- libgconf-2-4:i386
- libnss3:i386
- libxtst6:i386
- libasound2:i386
- libusb-0.1-4:i386
- libusb-1.0-0:i386
- gcc-multilib
- g++-multilib
allow_failures:
- env: BUILD_ARCH=ia32
fast_finish: true
cache:
directories:
- $HOME/.npm
- $(npm config get prefix)/lib/node_modules
- $(npm config get prefix)/bin/electron-forge
- node_modules
install:
- electron-forge --version || npm install -g electron-forge
- npm install --ignore-scripts
- node node_modules/electron-chromedriver/download-chromedriver.js
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
script:
- npm run lint
- electron-forge make -a $BUILD_ARCH
- npm run test
after_failure:
- cat $HOME/recta-error.log
notifications:
slack: recta-project:4FFGkXeZXIJdPYi3Xkp6i9YK
deploy:
provider: releases
api_key:
secure: UXy9Qxc/tBB/3lhMASY34snXtmO/urwoF+zYAUcauFQtxLeJ5x0uqW+BfOffaJd1ZlknrvRzaBg55Sy+SUaq96QaPyBQHTx5zm/AFsv6/uub9fBOBOUHyKJOzh3f3FEfb+/YeqzCAlH3BvnK4RUOCyasg//XxgNqFg6lyRF/+LfKj803+xeoZNptompNa4GPiJhCXyNn5/DEQ/1xJdSq3r12hZh+YPE5scGCyXfxx0gAKfCnhpnHXSmQkmk8xlRkwkg3qVezvCrYgEl9VRt0lkTLGeqQea5/cOsyonSL/diemNsOuPHjJl6Y4oR7MgHh/hnm9AIn6I3ihazhCDNIX7G/FQnsukQoYcDVjJ83pd7/frk30LfLzpNAbJzHJZC1HvcS5pX4L8dcoEBknTv+miOIsLzIq5kIw7GA2wcQGX3FR9Ny/FOu58EX7CmZ8jpSNzJjF/CKkXT7vHsajnpANvfnvXOcyPZ0LbAtwAaDo/+VoUV4ShY2Tq4ue4omwm/io98A/Uh4EAO3teREtwuLL7Z2olxiRffHepmCRr2bqGsN+qWWAHwItpKAGiKo98XiyvfEOYOne/kOloe7aoj3VzrNzSQ4rGCmt5d/7ggUWIX2nLZPMrZtTHkWoF8jHMP3MphlPmcfKuSlEolifs96C574dR8UYB56jTu3JKPDKt8=
file_glob: true
file: out/make/*
draft: true
tag_name: $TRAVIS_TAG
skip_cleanup: true
on:
tags: true
Loading

0 comments on commit d430a9c

Please sign in to comment.