Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]: Next #63

Closed
wants to merge 11 commits into from
5 changes: 5 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
version: 2
exclude_patterns:
- node_modules/**
- coverage/**
- tests/**
8 changes: 7 additions & 1 deletion ava.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
export default {
files: [
'!generator/**/*.js'
'tests/**'
],
require: [
'./tests/helpers/setup.js'
],
helpers: [
'tests/helpers/**/*'
]
}
312 changes: 118 additions & 194 deletions package-lock.json

Large diffs are not rendered by default.

21 changes: 14 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"postrelease": "git push --follow-tags origin master && node ./scripts/publish.js"
},
"files": [
"ui.js",
"prompts.js",
"locales",
"generator",
"logo.png"
],
"keywords": [
"vue",
"ava",
Expand Down Expand Up @@ -44,34 +51,34 @@
"@vue/cli-service": "^3.11.0",
"@vue/cli-test-utils": "^3.11.0",
"@vue/test-utils": "^1.0.0-beta.29",
"ava": "^2.3.0",
"ava": "^2.4.0",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.6",
"commitizen": "^4.0.3",
"conventional-github-releaser": "^3.1.3",
"css-modules-require-hook": "^4.2.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.2.2",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^2.0.4",
"husky": "^3.0.5",
"husky": "^3.0.8",
"inquirer": "^7.0.0",
"is-ci": "^2.0.0",
"lint-staged": "^9.2.5",
"nanoid": "^2.0.4",
"lint-staged": "^9.4.1",
"nanoid": "^2.1.2",
"nyc": "^14.1.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^3.0.0",
"rimraf": "^3.0.0",
"standard-version": "^7.0.0",
"stylus": "^0.54.7",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"vue-cli-plugin-vuetify": "^0.6.3"
},
"husky": {
Expand Down
23 changes: 0 additions & 23 deletions setup.js

This file was deleted.

Loading