Skip to content

Commit 1b80558

Browse files
committed
v6.0.7
1 parent 609b90b commit 1b80558

File tree

88 files changed

+19660
-4520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+19660
-4520
lines changed

.appveyor.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ branches:
1010
version: '{build}-{branch}'
1111

1212
cache:
13-
- 'node_modules'
14-
- '%APPDATA%\npm-cache'
15-
- '%USERPROFILE%\.electron'
13+
- "node_modules"
14+
- "%LOCALAPPDATA%\\Yarn"
1615

1716
init:
1817
- cmd: echo 🚦 Authorizing Build
@@ -21,12 +20,14 @@ init:
2120

2221
install:
2322
- cmd: echo 🔧 Setting up Environment
24-
- ps: Install-Product node 7.8.0
23+
- ps: Install-Product node 8
2524
- cmd: npm --global update npm
25+
- cmd: npm --global install yarn
2626

2727
before_build:
2828
- cmd: echo 📥 Installing Dependencies
2929
- cmd: npm install
30+
- cmd: yarn install
3031

3132
build_script:
3233
- cmd: echo 📦 Building

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@ trim_trailing_whitespace = false
1515
[*.yml]
1616
indent_size = 2
1717

18+
[.eslintrc]
19+
indent_size = 2
20+
1821
[package.json]
1922
indent_size = 2
File renamed without changes.

.eslintrc

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true
6+
},
7+
"globals": {
8+
"Audio": false,
9+
"global": false,
10+
"getEventListeners": false
11+
},
12+
"rules": {
13+
"no-bitwise": "off",
14+
"camelcase": "off",
15+
"curly": "error",
16+
"eqeqeq": "error",
17+
"wrap-iife": "off",
18+
"indent": [
19+
"error",
20+
4,
21+
{
22+
"SwitchCase": 1
23+
}
24+
],
25+
"no-use-before-define": [
26+
"error",
27+
{
28+
"functions": false
29+
}
30+
],
31+
"no-caller": "error",
32+
"quotes": [
33+
"error",
34+
"single",
35+
{
36+
"allowTemplateLiterals": true
37+
}
38+
],
39+
"no-undef": "error",
40+
"no-unused-vars": "error",
41+
"strict": [
42+
"error",
43+
"global"
44+
],
45+
"dot-notation": "off",
46+
"no-with": "error",
47+
"no-mixed-spaces-and-tabs": "error",
48+
"no-multi-str": "error",
49+
"key-spacing": [
50+
"error",
51+
{
52+
"beforeColon": false,
53+
"afterColon": true
54+
}
55+
],
56+
"object-curly-spacing": [
57+
"error",
58+
"always"
59+
],
60+
"space-unary-ops": [
61+
"error",
62+
{
63+
"words": false,
64+
"nonwords": false
65+
}
66+
],
67+
"space-before-function-paren": [
68+
"error",
69+
{
70+
"anonymous": "ignore",
71+
"named": "never"
72+
}
73+
],
74+
"space-in-parens": [
75+
"error",
76+
"never"
77+
],
78+
"comma-dangle": [
79+
"error",
80+
"never"
81+
],
82+
"no-trailing-spaces": "error",
83+
"comma-style": [
84+
"error",
85+
"last"
86+
],
87+
"eol-last": "error",
88+
"space-infix-ops": "error",
89+
"keyword-spacing": [
90+
"error",
91+
{}
92+
],
93+
"space-before-blocks": [
94+
"error",
95+
"always"
96+
],
97+
"linebreak-style": [
98+
"error",
99+
"unix"
100+
],
101+
"valid-jsdoc": [
102+
"warn",
103+
{
104+
"requireReturn": false,
105+
"requireReturnDescription": false
106+
}
107+
]
108+
}
109+
}

.gitignore

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BASELINE
1+
## BASELINE
22
# macOS
33
.DS_Store
44

@@ -10,7 +10,7 @@ logs
1010
temp
1111
tmp
1212

13-
# Caches
13+
# Cache
1414
.cache
1515
cache
1616
.sass-cache
@@ -22,10 +22,13 @@ cache
2222
# VSCode
2323
.vscode
2424

25-
# Compiled
26-
build
27-
28-
# Dependencies
25+
# nodeJS
2926
node_modules
3027
jspm_packages
3128
bower_components
29+
30+
# Compiled
31+
build
32+
33+
# Generated documentation
34+
RELEASENOTES.md

.jscsrc

Lines changed: 0 additions & 43 deletions
This file was deleted.

.jshintrc

Lines changed: 0 additions & 26 deletions
This file was deleted.

.npmignore

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BASELINE
1+
## BASELINE
22
# macOS
33
.DS_Store
44

@@ -13,18 +13,25 @@ tmp
1313
# Cache
1414
.cache
1515
cache
16-
.sass-cache/
16+
.sass-cache
1717

1818
# JetBrains
19-
.idea/
19+
.idea
2020
*.sln.iml
2121

22-
# Compiled
23-
build
22+
# VSCode
23+
.vscode
2424

25-
# Node
25+
# nodeJS
2626
node_modules
2727
jspm_packages
28+
bower_components
29+
30+
# Compiled
31+
build
32+
33+
# Generated documentation
34+
RELEASENOTES.md
2835

2936

3037
## NPM
@@ -40,8 +47,4 @@ lib-cov
4047
coverage
4148

4249
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
43-
.grunt
44-
45-
46-
# ELECTRON-CLOUD-DEPLOY CACHES
47-
electron-cloud-deploy-cache
50+
.grunt

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ matrix:
44
osx_image: xcode8.2
55
sudo: required
66
- os: linux
7-
dist: trusty
87
sudo: required
8+
dist: trusty
9+
group: edge
910
compiler: clang
1011

1112
language: c
@@ -16,8 +17,8 @@ branches:
1617

1718
cache:
1819
directories:
19-
- "$HOME/.electron"
2020
- "./node_modules"
21+
- "${HOME}/.yarn-cache"
2122

2223
addons:
2324
apt:
@@ -36,12 +37,14 @@ before_install:
3637
- if [[ "${OSTYPE}" == "linux"* ]] && [[ "${DEPLOY_LINUX}" == 0 ]]; then travis_terminate 0; fi
3738
- echo "🔧 Setting up Environment"
3839
- curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | NVM_DIR="${HOME}"/.nvm sh
39-
- source "${HOME}"/.nvm/nvm.sh && nvm install 7.8.0 && nvm use 7.8.0
40+
- source "${HOME}"/.nvm/nvm.sh && nvm install 8.5.0 && nvm use 8.5.0
4041
- npm --global update npm
42+
- npm --global install yarn
4143

4244
install:
4345
- echo "📥 Installing Dependencies"
4446
- npm install
47+
- yarn install
4548

4649
script:
4750
- echo "📦 Building"

0 commit comments

Comments
 (0)