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 Jul 13, 2023
1 parent 7d613a2 commit 609c1f2
Show file tree
Hide file tree
Showing 6 changed files with 1,053 additions and 725 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run: yarn global add semantic-release
- run: yarn global add "semantic-release@^19.0.5"
- run: yarn run semantic-release
gally-auto-approve:
docker:
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"ci"
],
"devDependencies": {
"@babel/core": "7.18.10",
"@babel/eslint-parser": "7.18.9",
"@babel/register": "7.18.9",
"@blackflux/eslint-plugin-rules": "2.1.0",
"@blackflux/robo-config-plugin": "7.9.11",
"c8": "7.12.0",
"chai": "4.3.6",
"eslint": "8.22.0",
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/register": "7.22.5",
"@blackflux/eslint-plugin-rules": "2.2.0",
"@blackflux/robo-config-plugin": "7.9.21",
"c8": "8.0.0",
"chai": "4.3.7",
"eslint": "8.44.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-mocha": "10.1.0",
"js-gardener": "4.0.0",
"node-tdd": "3.4.2"
"js-gardener": "4.0.2",
"node-tdd": "3.5.0"
},
"engines": {
"node": ">= 14"
Expand Down Expand Up @@ -70,16 +70,16 @@
},
"homepage": "https://github.com/blackflux/js-gardener#readme",
"dependencies": {
"chalk": "5.0.1",
"chalk": "5.3.0",
"fancy-log": "2.0.0",
"glob": "8.0.3",
"glob": "10.3.3",
"joi-strict": "2.0.1",
"js-yaml": "4.1.0",
"lodash.difference": "4.5.0",
"mocha": "10.0.0",
"mocha": "10.2.0",
"npm-check": "6.0.1",
"plugin-name-to-package-name": "0.1.1",
"robo-config": "4.0.5",
"robo-config": "5.0.0",
"smart-fs": "3.0.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/subtasks/robo.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import robo from 'robo-config';
export default (logger, cwd) => (async () => {
let result;
try {
result = robo(cwd);
result = await robo(cwd);
} catch (e) {
logger.error(e.message);
throw e;
Expand Down
4 changes: 1 addition & 3 deletions src/util.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import fs from 'smart-fs';
import glob from 'glob';

const globSync = glob.sync;
import { sync as globSync } from 'glob';

export const getEsLintFiles = (folder, ignore) => globSync(
'**/*.{js,json,md}',
Expand Down
2 changes: 1 addition & 1 deletion test/hot.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const resolve = async (specifier, context, defaultResolve) => {
reload: false
};
const content = fs.readFileSync(p, 'utf8');
if (content.includes('/* load-hot */') || content.includes('lru-cache-ext')) {
if (content.includes('/* load-hot */')) {
lookup[p].reload = true;
} else if (content.includes('process.env.')) {
lookup[p].reload = [...content.matchAll(/\bprocess\.env\.([a-zA-Z0-9_]+)\b/g)].map((e) => e[1]);
Expand Down
Loading

0 comments on commit 609c1f2

Please sign in to comment.