Skip to content

Commit

Permalink
(feat): implementing renderless components
Browse files Browse the repository at this point in the history
big refactor of the current implementation
  • Loading branch information
Dieter Stinglhamber committed Oct 5, 2018
1 parent 35b182f commit c1fb353
Show file tree
Hide file tree
Showing 35 changed files with 15,848 additions and 2,359 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not ie <= 8
9 changes: 0 additions & 9 deletions .editorconfig

This file was deleted.

33 changes: 16 additions & 17 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
module.exports = {
root: true,
root: true,

env: {
node: true,
},

extends: ['plugin:vue/recommended', '@vue/prettier'],

rules: {
'no-console': 'off',
'no-debugger': 'off',
},

parserOptions: {
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
},
extends: 'standard',
plugins: [
'html',
],
'env': {
'browser': true,
},
'rules': {
'arrow-parens': 0,
'generator-star-spacing': 0,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
},
};
},
}
24 changes: 20 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
.idea
node_modules
.DS_Store
.eslintcache
lib
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 80,
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
]
}
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ language: node_js
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
- node_modules

node_js:
- "6"
before_install:
- npm i -g yarn --cache-min 999999999
- "8"

install:
- yarn
- npm install
script:
- yarn lint
- npm run test:unit
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016
Copyright (c) 2018

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ 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.
SOFTWARE.
Loading

0 comments on commit c1fb353

Please sign in to comment.