Skip to content

Commit

Permalink
fix: dep update
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Siemon committed Aug 4, 2023
1 parent c9b781a commit 0a68ecb
Show file tree
Hide file tree
Showing 9 changed files with 320 additions and 248 deletions.
2 changes: 1 addition & 1 deletion gardener.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable import/no-extraneous-dependencies */
import process from 'process';
import gardener from 'js-gardener';
import fs from 'smart-fs';
import process from 'process';

if (process.argv[1] === fs.filename(import.meta.url)) {
gardener({
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/register": "7.22.5",
"@blackflux/eslint-plugin-rules": "2.1.0",
"@blackflux/robo-config-plugin": "8.0.1",
"c8": "8.0.0",
"@blackflux/eslint-plugin-rules": "2.2.0",
"@blackflux/robo-config-plugin": "9.1.7",
"c8": "8.0.1",
"chai": "4.3.7",
"eslint": "8.45.0",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-markdown": "3.0.1",
"eslint-plugin-mocha": "10.1.0",
"js-gardener": "4.0.3",
"node-tdd": "3.5.0"
"js-gardener": "5.0.0",
"node-tdd": "3.5.4"
},
"engines": {
"node": ">= 16"
Expand Down Expand Up @@ -80,7 +80,7 @@
"npm-check": "6.0.1",
"plugin-name-to-package-name": "0.1.1",
"robo-config": "5.0.0",
"smart-fs": "3.0.1"
"smart-fs": "3.0.2"
},
"resolutions": {
"strip-ansi": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/subtasks/depcheck.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from 'smart-fs';
import path from 'path';
import childProcess from 'child_process';
import fs from 'smart-fs';

export default (logger, dir) => (async () => {
let success = true;
Expand Down
2 changes: 1 addition & 1 deletion src/subtasks/eslint.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'smart-fs';
import path from 'path';
import fs from 'smart-fs';
import { ESLint } from 'eslint';
import { transform } from 'plugin-name-to-package-name';

Expand Down
2 changes: 1 addition & 1 deletion src/subtasks/struct.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'smart-fs';
import path from 'path';
import fs from 'smart-fs';

import { getTestFiles } from '../util.js';

Expand Down
2 changes: 1 addition & 1 deletion src/subtasks/yamllint.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'smart-fs';
import path from 'path';
import fs from 'smart-fs';
import yaml from 'js-yaml';

export default (logger, cwd, files) => (async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'smart-fs';
import path from 'path';
import fs from 'smart-fs';
import fancyLog from 'fancy-log';
import { expect } from 'chai';
import { describe } from 'node-tdd';
Expand Down
2 changes: 1 addition & 1 deletion test/subtasks/eslint.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'smart-fs';
import path from 'path';
import fs from 'smart-fs';
import { expect } from 'chai';
import { describe } from 'node-tdd';
import eslint from '../../src/subtasks/eslint.js';
Expand Down
Loading

0 comments on commit 0a68ecb

Please sign in to comment.