Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
* Fix Jest Haste Map
* Update NW.js
* Swap Vue-A11y linter for Vuejs-Accessibility
* Lint
* Update deps
* Remove --runInBand
* Bump to 1.6.0
  • Loading branch information
TheJaredWilcurt authored Jul 16, 2020
2 parents 812c3a1 + de49954 commit 0a75ba4
Show file tree
Hide file tree
Showing 9 changed files with 3,337 additions and 7,027 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
chrome 80
chrome 84
14 changes: 11 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
extends: [
'eslint:recommended',
'plugin:jest/recommended',
'plugin:vue-a11y/recommended',
'plugin:vuejs-accessibility/recommended',
'tjw-base',
'tjw-vue'
],
Expand All @@ -35,7 +35,15 @@ module.exports = {
'error',
'Property[method="true"]'
],
// https://github.com/maranran/eslint-plugin-vue-a11y/issues/10
'vue-a11y/click-events-have-key-events': 'off'
'vuejs-accessibility/label-has-for': [
'error',
{
'components': ['Label'],
'required': {
'some': ['nesting', 'id']
},
'allowChildren': false
}
]
}
};
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ NW.js + Vue-CLI 4 example

![A screenshot of the default app running on Windows](screenshot.png)

* NW.js 0.44.2
* Chrome 80
* Node 13.8.0
* Vue-CLI 4.2.2
* NW.js 0.47.0
* Chrome 84
* Node 14.5.0
* Vue-CLI 4.4.6
* Vue 2.6.11
* Vue-DevTools (latest)
* Babel
Expand Down
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ module.exports = {
'**/tests/unit/**/*.test.js'
],
testPathIgnorePatterns: [
'<rootDir>/tests/e2e'
'<rootDir>/tests/e2e',
'<rootDir>/dist',
'<rootDir>/dist-vue'
]
};
1 change: 1 addition & 0 deletions nightwatch.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ nwBinary = './node_modules/nw/' + nwBinary;
driver = './node_modules/nw/' + driver;

module.exports = (function (settings) {
console.log(nwBinary);
settings.webdriver.server_path = driver;
settings.selenium.cli_args['webdriver.chrome.driver'] = driver;
return settings;
Expand Down
Loading

0 comments on commit 0a75ba4

Please sign in to comment.