Skip to content

Commit cb798b0

Browse files
author
Lars Eichler
committed
Merge branch 'release/2.0.0'
2 parents 0aabfc7 + 098efe2 commit cb798b0

Some content is hidden

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

48 files changed

+66963
-7209
lines changed

.babelrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env", {
5+
"useBuiltIns": "entry",
6+
"debug": false
7+
}]
8+
],
9+
"plugins": [
10+
"@babel/plugin-syntax-dynamic-import",
11+
"@babel/plugin-proposal-class-properties",
12+
"@babel/plugin-proposal-object-rest-spread"
13+
]
14+
}

.browserslistrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
> 0.25%
2+
IE 11

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false
14+
15+
[*.php]
16+
indent_size = 4

.eslintrc.js

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// http://eslint.org/docs/user-guide/configuring
2+
3+
module.exports = {
4+
root: true,
5+
parserOptions: {
6+
parser: 'typescript-eslint-parser',
7+
ecmaVersion: 2017,
8+
sourceType: 'module'
9+
},
10+
env: {
11+
browser: true,
12+
node: true,
13+
es6: true,
14+
jquery: true,
15+
jest: true
16+
},
17+
extends: [
18+
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
19+
'standard',
20+
'plugin:vue/recommended',
21+
'plugin:prettier/recommended'
22+
],
23+
plugins: ['typescript'],
24+
// check if imports actually resolve
25+
settings: {
26+
'import/resolver': {
27+
webpack: {
28+
config: 'webpack/webpack.prod.babel.js'
29+
}
30+
}
31+
},
32+
rules: {
33+
indent: 0,
34+
'no-console': 0,
35+
'object-curly-spacing': 0,
36+
'space-before-function-paren': 0
37+
}
38+
}

.gitignore

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ yarn-error.log*
88

99
# Optional npm cache directory
1010
.npm
11+
.config
12+
.node*
1113

1214
# Dependency directories
1315
/node_modules
@@ -25,13 +27,17 @@ yarn-error.log*
2527
.env.*
2628

2729
# Build generated
30+
31+
dist/index.html
32+
dist/app.css
33+
dist/app.js
2834
build/
2935
doc/
3036

3137
# Map-Files
3238
*.js.map
3339

34-
# Sass-Files
40+
### Sass-Files ###
3541
*.sassc
3642
.sass-cache
3743
*.css.map
@@ -42,6 +48,10 @@ doc/
4248
*.tmPreferences.cache
4349
*.stTheme.cache
4450

51+
### Test Results ###
52+
tests/e2e/screenshots
53+
tests/e2e/videos
54+
4555
# workspace files are user-specific
4656
*.sublime-workspace
4757

@@ -52,6 +62,7 @@ doc/
5262

5363
### VisualStudioCode ###
5464
.vscode/*
65+
.v8flags.*
5566
!.vscode/settings.json
5667
!.vscode/tasks.json
5768
!.vscode/launch.json
@@ -88,20 +99,3 @@ $RECYCLE.BIN/
8899
.Trashes
89100
.VolumeIcon.icns
90101
.com.apple.timemachine.donotpresent
91-
92-
# Master Branch
93-
.babelrc
94-
.browserslistrc
95-
.editorconfig
96-
.eslintrc-dev.js
97-
.eslintrc.js
98-
.nvmrc
99-
.sass-lint.yml
100-
.stylelintrc
101-
config.json
102-
gulpfile.babel.js
103-
gulpfile
104-
nodescripts
105-
webpack
106-
postcss.config.js
107-
yarn.lock

.npmignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
tests
2+
webpack
3+
dist/*.html
4+
dist/app.js
5+
.*
6+
*.config.js
7+
config.json
8+
tsconfig.json
9+
tslint.json
10+
*.lock
11+
package-lock.json

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/*.scss

.yo-rc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"generator-kittn": {
3+
"promptValues": {
4+
"projectusage": "webpackApp",
5+
"projectcssstructure": "sassAtomic",
6+
"projectbreakpointunit": "em",
7+
"projectthemecolor": "#29b8f2",
8+
"projectstylelint": false,
9+
"projectprettier": true,
10+
"projecttypescript": true,
11+
"projecttestingunit": true,
12+
"projecttestinge2e": false,
13+
"projecttestingwallaby": false,
14+
"projectversion": "0.0.1",
15+
"projectmail": "[email protected]",
16+
"projecturl": "https://github.com/CinKon/vue-pell-editor.git"
17+
}
18+
}
19+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Lars Eichler
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)