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

Bump dependencies #52

Merged
merged 5 commits into from
Feb 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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