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

chore: update dependencies #3539

Merged
merged 39 commits into from
Jul 25, 2022
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5ded8e8
update esbuild to support m1
dbowling Jul 6, 2022
bff9fe9
update webdriverjs
dbowling Jul 6, 2022
cd5ea5c
update babel
dbowling Jul 6, 2022
6fb29f9
update act rules
dbowling Jul 6, 2022
43e414e
update aria practices
dbowling Jul 6, 2022
a478d08
aria-query bump
dbowling Jul 6, 2022
a0ef56a
update babel
dbowling Jul 6, 2022
80b685e
husky 3.x
dbowling Jul 6, 2022
741d174
chore: update dependencies
dbowling Jul 11, 2022
0d51118
Pin execa due to ESM
dbowling Jul 11, 2022
f087bf2
bump selenium-webdriver
dbowling Jul 12, 2022
7759993
partial fix for selenium-webdriver 3.4.0
dbowling Jul 12, 2022
33afb49
fix selenium browser name
dbowling Jul 13, 2022
761120d
Fix deepEqual assert
dbowling Jul 13, 2022
cd64570
Fix deepEqual assert
dbowling Jul 13, 2022
c78d480
Merge branch 'chore/update-dependencies' of github.com:dequelabs/axe-…
dbowling Jul 13, 2022
7f3d5a9
fix deepEqual due to webdriver issue
dbowling Jul 13, 2022
a875b83
update globby
dbowling Jul 13, 2022
41a3b1e
update sinon to 10.x
dbowling Jul 13, 2022
c0aaa20
roll back sinon to v9.x
dbowling Jul 13, 2022
7401913
break up &&
dbowling Jul 19, 2022
209d637
linting
dbowling Jul 19, 2022
0348ff5
remove comments
dbowling Jul 19, 2022
e8372ce
require dev dependencies to be installed
dbowling Jul 21, 2022
e25d695
Merge branch 'develop' into chore/update-dependencies
dbowling Jul 21, 2022
7c37fee
regenerate package-lock after integration
dbowling Jul 21, 2022
7a2c4d2
jsdoc patch update
dbowling Jul 21, 2022
183101e
patch core-js
dbowling Jul 22, 2022
ce9fe59
downgrade esbuild
dbowling Jul 22, 2022
a0a8a33
update esbuild to 0.13.1
dbowling Jul 22, 2022
b509e98
upgrade esbuild to 0.13.2
dbowling Jul 22, 2022
a48ae9e
esbuild 0.13.15
dbowling Jul 22, 2022
4d55a63
update esbuild to 0.14.0
dbowling Jul 22, 2022
9e6f4a4
update esbuild to 0.14.1
dbowling Jul 22, 2022
ff17a6f
update esbuild to 0.14.2
dbowling Jul 22, 2022
8869e25
update esbuild to 0.14.3
dbowling Jul 22, 2022
c67e48d
update esbuild to 0.14.5
dbowling Jul 22, 2022
ff628a0
update esbuild to 0.14.6
dbowling Jul 22, 2022
464953c
update esbuild to 0.14.7
dbowling Jul 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
linting
  • Loading branch information
dbowling committed Jul 19, 2022
commit 209d63766919b3f848021053e5eb83ed09a2b34a
18 changes: 9 additions & 9 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*eslint
camelcase: ["error", {"properties": "never"}]
*/
module.exports = function(grunt) {
module.exports = function (grunt) {
'use strict';

grunt.loadNpmTasks('grunt-babel');
Expand All @@ -14,13 +14,13 @@ module.exports = function(grunt) {

var langs;
if (grunt.option('lang')) {
langs = (grunt.option('lang') || '').split(/[,;]/g).map(function(lang) {
langs = (grunt.option('lang') || '').split(/[,;]/g).map(function (lang) {
lang = lang.trim();
return lang !== 'en' ? '.' + lang : '';
});
} else if (grunt.option('all-lang')) {
var localeFiles = require('fs').readdirSync('./locales');
langs = localeFiles.map(function(file) {
langs = localeFiles.map(function (file) {
return '.' + file.replace('.json', '');
});
langs.unshift(''); // Add default
Expand All @@ -29,7 +29,7 @@ module.exports = function(grunt) {
}

// run tests only for affected files instead of all tests
grunt.event.on('watch', function(action, filepath) {
grunt.event.on('watch', function (action, filepath) {
grunt.config.set('watch.file', filepath);
});

Expand Down Expand Up @@ -80,7 +80,7 @@ module.exports = function(grunt) {
process: true
},
coreFiles: ['tmp/core/index.js', 'tmp/core/**/*.js'],
files: langs.map(function(lang, i) {
files: langs.map(function (lang, i) {
return {
src: [
'lib/intro.stub',
Expand Down Expand Up @@ -136,7 +136,7 @@ module.exports = function(grunt) {
options: {
tags: grunt.option('tags')
},
files: langs.map(function(lang) {
files: langs.map(function (lang) {
return {
src: [''],
dest: {
Expand Down Expand Up @@ -177,7 +177,7 @@ module.exports = function(grunt) {
},
uglify: {
beautify: {
files: langs.map(function(lang, i) {
files: langs.map(function (lang, i) {
return {
src: ['<%= concat.engine.files[' + i + '].dest %>'],
dest: '<%= concat.engine.files[' + i + '].dest %>'
Expand All @@ -199,7 +199,7 @@ module.exports = function(grunt) {
}
},
minify: {
files: langs.map(function(lang, i) {
files: langs.map(function (lang, i) {
return {
src: ['<%= concat.engine.files[' + i + '].dest %>'],
dest: './axe' + lang + '.min.js'
Expand Down Expand Up @@ -242,7 +242,7 @@ module.exports = function(grunt) {
},
bytesize: {
all: {
src: langs.map(function(lang) {
src: langs.map(function (lang) {
return ['./axe' + lang + '.js', './axe' + lang + '.min.js'];
})
}
Expand Down