Skip to content

Commit c620eda

Browse files
committed
🐛 bug: fix cannot resolve dependency
closes #2
1 parent 6ed9ff2 commit c620eda

File tree

17 files changed

+4902
-8625
lines changed

17 files changed

+4902
-8625
lines changed

.babelrc

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

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
./lib

.eslintrc

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

.eslintrc.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
parser: 'babel-eslint',
5+
ecmaVersion: 2015,
6+
sourceType: 'module'
7+
},
8+
plugins: [
9+
'vue'
10+
],
11+
extends: [
12+
// 'eslint:recommended',
13+
'plugin:vue/essential'
14+
],
15+
rules: {
16+
'object-curly-spacing': ['error', 'always'],
17+
'no-multiple-empty-lines': ['error', { max: 2, maxBOF: 1 }]
18+
}
19+
}

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
*.log
33
*.swp
44
*.yml
5+
src/__tests__
56
coverage
6-
test

.nyc_output/.gitkeep

Whitespace-only changes.

lib/.gitkeep

Whitespace-only changes.

lib/index.js

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

lib/util.js

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

0 commit comments

Comments
 (0)