File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ module.exports = {
31
31
] ,
32
32
"no-console" : [
33
33
"off"
34
+ ] ,
35
+ "no-unused-vars" : [
36
+ "warn"
34
37
]
35
38
}
36
39
} ;
Original file line number Diff line number Diff line change 11
11
"coverage" : " set TEST_TYPE=coverage & karma start karma.config.js" ,
12
12
"unit" : " karma start test/unit/karma.conf.js" ,
13
13
"e2e" : " node test/e2e/runner.js" ,
14
- "test" : " npm run lint && npm run unit && npm run e2e " ,
14
+ "test" : " npm run unit" ,
15
15
"ci" : " karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots"
16
16
},
17
17
"keywords" : [
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module.exports = {
3
3
schema : require ( "./utils/schema.js" ) ,
4
4
validators : require ( "./utils/validators.js" ) ,
5
5
6
- install ( Vue , options ) {
6
+ install ( Vue ) {
7
7
Vue . component ( "VueFormGenerator" , module . exports . component ) ;
8
8
}
9
9
} ;
You can’t perform that action at this time.
0 commit comments