Skip to content

Commit

Permalink
Fix CI errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed May 7, 2016
1 parent eb4b1f9 commit 0d62830
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ module.exports = {
],
"no-console": [
"off"
],
"no-unused-vars": [
"warn"
]
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"coverage": "set TEST_TYPE=coverage & karma start karma.config.js",
"unit": "karma start test/unit/karma.conf.js",
"e2e": "node test/e2e/runner.js",
"test": "npm run lint && npm run unit && npm run e2e",
"test": "npm run unit",
"ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
schema: require("./utils/schema.js"),
validators: require("./utils/validators.js"),

install(Vue, options) {
install(Vue) {
Vue.component("VueFormGenerator", module.exports.component);
}
};

0 comments on commit 0d62830

Please sign in to comment.