Skip to content

Commit eb2ba1b

Browse files
author
Lionel Bijaoui
committed
Trying to fix Travis
1 parent 8dcf3a2 commit eb2ba1b

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = {
1313
process: true
1414
},
1515
extends: ["eslint:recommended", "prettier", "plugin:vue/essential"],
16-
plugins: ["prettier"],
16+
plugins: ["prettier", "babel"],
1717
rules: {
1818
indent: [1, "tab", { SwitchCase: 1 }],
1919
quotes: [1, "double", { allowTemplateLiterals: true }],

package-lock.json

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,17 @@
99
"build:core": "cross-env FULL_BUNDLE=false webpack --progress --config build/webpack.build.config.js --define process.env.FULL_BUNDLE=false --output-filename=vfg-core.js",
1010
"build:full": "cross-env FULL_BUNDLE=true webpack --progress --config build/webpack.build.config.js --define process.env.FULL_BUNDLE=true",
1111
"build": "cross-env NODE_ENV=production npm run build:core && cross-env NODE_ENV=production npm run build:full",
12-
"dev-OLD": "webpack-dev-server --config webpack.dev.config.js --inline --hot --content-base dev/",
1312
"dev": "webpack-dev-server --config build/webpack.dev.config.js --inline --hot",
1413
"lint": "eslint --ext=.js,.vue src test/unit/specs",
1514
"coverall": "cat ./test/unit/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
16-
"coverage-OLD": "npm run test && npm run coverall",
1715
"coverage": "cross-env NODE_ENV=test nyc npm run mocha && nyc report --reporter=text-lcov | coveralls",
1816
"changelog": "conventional-changelog -i CHANGELOG.md -s",
1917
"changelog:full": "conventional-changelog -i CHANGELOG.md -s -r 0",
2018
"docs": "cd docs && gitbook serve",
2119
"mocha": "mocha-webpack --webpack-config build/webpack.test.config.js --require test/unit/setup.js test/unit/specs/**/*.spec.js",
22-
"unit-OLD": "karma start test/unit/karma.conf.js",
2320
"unit": "cross-env NODE_ENV=test nyc npm run mocha",
2421
"e2e": "node test/e2e/runner.js",
2522
"pretest": "npm run lint",
26-
"ci-OLD": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots --port=9877",
2723
"ci": "cross-env NODE_ENV=test mocha-webpack --watch --webpack-config build/webpack.test.config.js --require test/unit/setup.js test/unit/specs/**/*.spec.js",
2824
"test": "npm run unit",
2925
"version": "bumped release"
@@ -74,6 +70,7 @@
7470
"eslint-config-prettier": "3.0.1",
7571
"eslint-friendly-formatter": "4.0.1",
7672
"eslint-loader": "2.1.0",
73+
"eslint-plugin-babel": "^5.1.0",
7774
"eslint-plugin-import": "2.14.0",
7875
"eslint-plugin-node": "7.0.1",
7976
"eslint-plugin-prettier": "2.6.2",

0 commit comments

Comments
 (0)