Skip to content

Commit

Permalink
Merge pull request #467 from gdg-x/hoverboard-v2
Browse files Browse the repository at this point in the history
Release Hoverboard v2.0.0
  • Loading branch information
ozasadnyy committed Jul 12, 2018
2 parents 9339c85 + 8a93cd0 commit 76bbbf8
Show file tree
Hide file tree
Showing 325 changed files with 67,806 additions and 12,003 deletions.
14 changes: 14 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"env": {
"development": {
"presets": [
[
"@babel/preset-env",
{
"shippedProposals": true
}
]
]
}
}
}
56 changes: 56 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"extends": [
"eslint:recommended",
"google",
"plugin:polymer/polymer-2"
],
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"browser": true,
"es6": true
},
"plugins": [
"html",
"polymer"
],
"rules": {
"brace-style": "off",
"new-cap": "off",
"no-var": "off",
"require-jsdoc": "off",
"max-len": ["error", { "code": 100 }],
"object-curly-spacing": ["error", "always"],
"space-before-function-paren": ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
"linebreak-style": 0
},
"globals": {
"Polymer": true,
"firebase": true,
"google": true,
"ga": true,
"ShadyCSS": true,
"ReduxMixin": true,
"uiActions": true,
"routingActions": true,
"dialogsActions": true,
"toastActions": true,
"ticketsActions": true,
"partnersActions": true,
"videosActions": true,
"blogActions": true,
"speakersActions": true,
"previousSpeakersActions": true,
"sessionsActions": true,
"scheduleActions": true,
"galleryActions": true,
"teamActions": true,
"userActions": true,
"subscribeActions": true,
"notificationsActions": true,
"helperActions": true,
"DIALOGS": true,
"NOTIFICATIONS_STATUS": true
}
}
11 changes: 7 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
bower_components
dist
node_modules
build
bower_components/
dist/
node_modules/
build/
functions/lib/
.idea/
.temp/
.vscode/
.firebaserc
/appengine/dist/
25 changes: 11 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
language: node_js
node_js: 7
node_js: 8
cache:
yarn: true
directories:
- node_modules
- bower_components
- "${NVM_PATH}_modules"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
install:
- npm install
script: echo "Deploying!"
before_deploy: npm run build
- yarn
- cd functions && yarn && cd ..
script:
- yarn lint
- echo "Building..."
- if [ "$TRAVIS_BRANCH" == "develop" ]; then yarn build; fi
- if [ "$TRAVIS_BRANCH" == "master" ]; then yarn build:prod; fi
before_deploy:
- echo "Deploying!"
deploy:
- provider: firebase
skip_cleanup: true
Expand All @@ -32,4 +30,3 @@ deploy:
project: hoverboard-dev
token:
secure: Quq/Ys1GKDYFjqMCD107saKj005L0RaM7Ian9yLIW/er4KdMzwjYw7TVXmtMeJPIfEy/e2/4WJ63K1SaXieBoFndoUcpGWqPOoTrnkkj5K7tzeZKM32XqIarF+BNmOoqW5M7+kuN8L7N3RLp00ywFDOgKgiZJeoaDV6sIRRAIFVh+xHWabVWpFCwCUSeBZpufOsZhMXkicyRe0XhMmkUvS1P5CI3AyZZdIfWG+sguFsPOWRjMFKWrbnsilDFDjf7N0Wd8Z1H2Z0LBn/V00bNb95MSIuOhkdk3a1wP0P5Eollet+Y8g+NpdWyFq0/C+6+ECvFLBjtvbtMY1BVfdxkCo5XlogZx31OmkMWVX6PXOD5Va8aFoJnwvjovUT8oZbSCWEuyMxI91jDsLxXZt542MNfUfQ1Q2+SpUShdcRlwoV2c/XOYvme95HnI1LSqzLubooKWxz8wpa/aovkdZbum54t/z5nA54AXN1lYKsi+hcAFHOeucqd/kHOLG0bx05Ev86wcvNH8qGx+v7S644YH37No7PGnKU3g3Jq/m6quo1B/bMEIaatVnR40D301wAi8tsNWnqEdWFKnAlGrTIDd1qek9OHnApmgBQI8o0FOy6WbzLMwl9PnMl+t+wew/ggSY0IdWhjFWR/S1d6xML8cYHXHVpE0wxkat5ETbIYXlg=

Loading

0 comments on commit 76bbbf8

Please sign in to comment.