Skip to content

Commit 35e98d6

Browse files
committed
Update dependencies
1 parent 6158af0 commit 35e98d6

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

+7530
-29528
lines changed

.babelrc

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

.browserslistrc

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

.editorconfig

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

.eslintignore

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

.eslintrc.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: ["plugin:vue/essential", "eslint:recommended", "@vue/prettier"],
7+
parserOptions: {
8+
parser: "babel-eslint"
9+
},
10+
rules: {
11+
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
12+
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
13+
},
14+
overrides: [
15+
{
16+
files: [
17+
"**/__tests__/*.{j,t}s?(x)",
18+
"**/tests/unit/**/*.spec.{j,t}s?(x)"
19+
],
20+
env: {
21+
jest: true
22+
}
23+
}
24+
]
25+
};

.eslintrc.json

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

.gitignore

Lines changed: 19 additions & 166 deletions
Original file line numberDiff line numberDiff line change
@@ -1,170 +1,23 @@
1-
dist/
2-
3-
# Created by https://www.gitignore.io/api/webstorm,phpstorm,osx,linux,node
4-
5-
### WebStorm ###
6-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
7-
8-
*.iml
9-
10-
## Directory-based project format:
11-
.idea/
12-
# if you remove the above rule, at least ignore the following:
13-
14-
# User-specific stuff:
15-
# .idea/workspace.xml
16-
# .idea/tasks.xml
17-
# .idea/dictionaries
18-
# .idea/shelf
19-
20-
# Sensitive or high-churn files:
21-
# .idea/dataSources.ids
22-
# .idea/dataSources.xml
23-
# .idea/sqlDataSources.xml
24-
# .idea/dynamic.xml
25-
# .idea/uiDesigner.xml
26-
27-
# Gradle:
28-
# .idea/gradle.xml
29-
# .idea/libraries
30-
31-
# Mongo Explorer plugin:
32-
# .idea/mongoSettings.xml
33-
34-
## File-based project format:
35-
*.ipr
36-
*.iws
37-
38-
## Plugin-specific files:
39-
40-
# IntelliJ
41-
/out/
42-
43-
# mpeltonen/sbt-idea plugin
44-
.idea_modules/
45-
46-
# JIRA plugin
47-
atlassian-ide-plugin.xml
48-
49-
# Crashlytics plugin (for Android Studio and IntelliJ)
50-
com_crashlytics_export_strings.xml
51-
crashlytics.properties
52-
crashlytics-build.properties
53-
fabric.properties
54-
55-
56-
### PhpStorm ###
57-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
58-
59-
## Directory-based project format:
60-
# if you remove the above rule, at least ignore the following:
61-
62-
# User-specific stuff:
63-
# .idea/workspace.xml
64-
# .idea/tasks.xml
65-
# .idea/dictionaries
66-
# .idea/shelf
67-
68-
# Sensitive or high-churn files:
69-
# .idea/dataSources.ids
70-
# .idea/dataSources.xml
71-
# .idea/sqlDataSources.xml
72-
# .idea/dynamic.xml
73-
# .idea/uiDesigner.xml
74-
75-
# Gradle:
76-
# .idea/gradle.xml
77-
# .idea/libraries
78-
79-
# Mongo Explorer plugin:
80-
# .idea/mongoSettings.xml
81-
82-
## File-based project format:
83-
## Plugin-specific files:
84-
85-
# IntelliJ
86-
# mpeltonen/sbt-idea plugin
87-
# JIRA plugin
88-
# Crashlytics plugin (for Android Studio and IntelliJ)
89-
### OSX ###
901
.DS_Store
91-
.AppleDouble
92-
.LSOverride
93-
94-
# Icon must end with two \r
95-
Icon
96-
97-
98-
# Thumbnails
99-
._*
100-
101-
# Files that might appear in the root of a volume
102-
.DocumentRevisions-V100
103-
.fseventsd
104-
.Spotlight-V100
105-
.TemporaryItems
106-
.Trashes
107-
.VolumeIcon.icns
108-
109-
# Directories potentially created on remote AFP share
110-
.AppleDB
111-
.AppleDesktop
112-
Network Trash Folder
113-
Temporary Items
114-
.apdisk
115-
116-
117-
### Linux ###
118-
*~
119-
120-
# temporary files which can be created if a process still has a handle open of a deleted file
121-
.fuse_hidden*
122-
123-
# KDE directory preferences
124-
.directory
125-
126-
# Linux trash folder which might appear on any partition or disk
127-
.Trash-*
128-
129-
130-
### Node ###
131-
# Logs
132-
logs
133-
*.log
134-
npm-debug.log*
135-
136-
# Runtime data
137-
pids
138-
*.pid
139-
*.seed
140-
141-
# Directory for instrumented libs generated by jscoverage/JSCover
142-
lib-cov
143-
144-
# Coverage directory used by tools like istanbul
145-
coverage
146-
147-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
148-
.grunt
149-
150-
# node-waf configuration
151-
.lock-wscript
152-
153-
# Compiled binary addons (http://nodejs.org/api/addons.html)
154-
build/Release
155-
156-
# Dependency directory
1572
node_modules
3+
/dist
1584

159-
# Optional npm cache directory
160-
.npm
5+
# local env files
6+
.env.local
7+
.env.*.local
1618

162-
# Optional REPL history
163-
.node_repl_history
164-
165-
# Visual Studio Code
166-
.vscode/*
167-
!.vscode/settings.json
168-
!.vscode/tasks.json
169-
!.vscode/launch.json
170-
!.vscode/extensions.json
9+
# Log files
10+
npm-debug.log*
11+
lerna-debug.log*
12+
lerna-error.log*
13+
yarn-debug.log*
14+
yarn-error.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

babel.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ["@vue/cli-plugin-babel/preset"]
3+
};

examples/.babelrc

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

examples/.editorconfig

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

0 commit comments

Comments
 (0)