Skip to content

Commit

Permalink
Bump dependencies (#52)
Browse files Browse the repository at this point in the history
* Bump eslint from 8.32.0 to 8.33.0

Bumps [eslint](https://github.com/eslint/eslint) from 8.32.0 to 8.33.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.32.0...v8.33.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump eslint-config-canonical from 39.1.4 to 40.0.7

Bumps [eslint-config-canonical](https://github.com/gajus/eslint-config-canonical) from 39.1.4 to 40.0.7.
- [Release notes](https://github.com/gajus/eslint-config-canonical/releases)
- [Changelog](https://github.com/gajus/eslint-config-canonical/blob/main/.releaserc)
- [Commits](gajus/eslint-config-canonical@v39.1.4...v40.0.7)

---
updated-dependencies:
- dependency-name: eslint-config-canonical
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* bump eslint and eslint-canonical

* bumped version

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
aolenevme and dependabot[bot] authored Feb 11, 2023
1 parent 7568b94 commit 8c88a4d
Show file tree
Hide file tree
Showing 14 changed files with 957 additions and 109 deletions.
1,034 changes: 941 additions & 93 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"devDependencies": {
"@stryker-mutator/core": "^6.3.1",
"c8": "^7.12.0",
"eslint": "^8.32.0",
"eslint-config-canonical": "39.1.4",
"eslint": "^8.33.0",
"eslint-config-canonical": "40.0.7",
"eslint-plugin-sort-destructure-keys": "^1.4.0"
},
"engines": {
Expand All @@ -41,5 +41,5 @@
"test:unit": "npx c8 node ./test.js; rm -rf ./coverage"
},
"type": "module",
"version": "1.2.3"
"version": "1.2.4"
}
2 changes: 1 addition & 1 deletion source/drivers/config/config.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import config from './config.js';
import assert from 'node:assert/strict';

const testConfig = async ({
fs,
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/drivers.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import drivers from './drivers.js';
import assert from 'node:assert/strict';

const testDrivers = () => {
const {
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/fail/fail.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import fail from './fail.js';
import assert from 'node:assert/strict';

const testFail = ({
message,
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/filesystem/filesystem.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import filesystem from './filesystem.js';
import assert from 'node:assert/strict';

const testFilesystem = async ({
fs,
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/logger/logger.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import logger from './logger.js';
import assert from 'node:assert/strict';

const testLogger = async ({
content,
Expand Down
4 changes: 2 additions & 2 deletions source/source.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env node
import fs from 'node:fs/promises';
import yaml from 'js-yaml';
import drivers from './drivers/drivers.js';
import useCases from './useCases/useCases.js';
import yaml from 'js-yaml';
import fs from 'node:fs/promises';

const {
config,
Expand Down
2 changes: 1 addition & 1 deletion source/useCases/lintFs/lintFs.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import lintFs from './lintFs.js';
import assert from 'node:assert/strict';

const testLintFs = async ({
config,
Expand Down
2 changes: 1 addition & 1 deletion source/useCases/lintFs/matcher/matcher.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import matcher from './matcher.js';
import assert from 'node:assert/strict';

const testMatcher = ({
path,
Expand Down
2 changes: 1 addition & 1 deletion source/useCases/lintFs/reporter/reporter.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import reporter from './reporter.js';
import assert from 'node:assert/strict';

const testReporter = ({
info,
Expand Down
2 changes: 1 addition & 1 deletion source/useCases/useCases.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import useCases from './useCases.js';
import assert from 'node:assert/strict';

const testUseCases = () => {
const {
Expand Down
2 changes: 1 addition & 1 deletion source/utils/errors/errors.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import errors from './errors.js';
import assert from 'node:assert/strict';

const testErrorsWrap = ({
next,
Expand Down
2 changes: 1 addition & 1 deletion source/utils/utils.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import assert from 'node:assert/strict';
import utils from './utils.js';
import assert from 'node:assert/strict';

const testUtils = () => {
const {
Expand Down

0 comments on commit 8c88a4d

Please sign in to comment.