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

Commit

Permalink
feat: begin rewrite
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed Oct 5, 2017
1 parent 7735322 commit f5d35d6
Show file tree
Hide file tree
Showing 100 changed files with 1,364 additions and 5,587 deletions.
3 changes: 1 addition & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
environment:
matrix:
- nodejs_version: ""
- nodejs_version: ""
platform:
- x64
- x86
Expand All @@ -12,5 +12,4 @@ install:
- yarn install
test_script:
- yarn test
- yarn start build
build: off
29 changes: 22 additions & 7 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
// babel-jest is a PITA and only looks for .babelrc
{
"presets":["env","stage-0"],
"plugins":["transform-runtime"],
"comments":false,
"env":{
"test":{
"plugins":["istanbul"]
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Edge versions",
"last 2 Firefox versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions"
]
}
}],
"stage-0"
],
"plugins": ["transform-runtime"],
"env": {
"test": {
"presets": ["env", "stage-0"],
"plugins": ["istanbul"]
}
}
}
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ exclude_paths:
- .vscode
- public
- tests
- client/locales
- src/locales
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ root = true
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = crlf
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
10 changes: 2 additions & 8 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
root: true
parser: babel-eslint
parserOptions:
sourceType: module
ecmaFeatures:
jsx: false
env:
browser: true
extends: standard
plugins:
- html
Expand All @@ -13,8 +12,3 @@ rules:
arrow-parens: 0
# Allow async-await
generator-star-spacing: 0
# MemberExpression
indent:
- error
- 2
- MemberExpression: 0
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
node_modules
dist
test/coverage
server/data/**
!server/data/.gitkeep

# Editor directories and files
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.log
8 changes: 8 additions & 0 deletions .postcssrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// https://github.com/michael-ciniawsky/postcss-load-config

module.exports = {
"plugins": {
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}
16 changes: 0 additions & 16 deletions .scss-lint.yml

This file was deleted.

7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@ os:
language: node_js
node_js:
- node
- 7
cache:
yarn: true
sudo: false
matrix:
fast_finish: true
before_install: yarn global add greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
script:
- yarn test
- npm start build
script: yarn test
after_script: greenkeeper-lockfile-upload
after_success:
- travis_retry yarn global add codeclimate-test-reporter
- yarn global add codeclimate-test-reporter
- codeclimate-test-reporter < test/coverage/lcov.info
addons:
code_climate:
Expand Down
101 changes: 0 additions & 101 deletions .yarnclean

This file was deleted.

132 changes: 0 additions & 132 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit f5d35d6

Please sign in to comment.