Skip to content

Commit

Permalink
chore(deps): update (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 30, 2023
1 parent d1d2460 commit c99c6e8
Show file tree
Hide file tree
Showing 4 changed files with 1,627 additions and 15,044 deletions.
5 changes: 1 addition & 4 deletions globalSetup.js
@@ -1,8 +1,6 @@
const path = require("path");
const fs = require("fs");

// eslint-disable-next-line import/no-extraneous-dependencies
const mkdirp = require("mkdirp");
const webpack = require("webpack");

const removeIllegalCharacterForWindows = require("./test/helpers/removeIllegalCharacterForWindows");
Expand All @@ -20,8 +18,7 @@ module.exports = () => {
const file = removeIllegalCharacterForWindows(originFile);
const dir = path.dirname(file);

mkdirp.sync(path.join(baseDir, dir));

fs.mkdirSync(path.join(baseDir, dir), { recursive: true });
fs.writeFileSync(path.join(baseDir, file), specialFiles[originFile]);
});

Expand Down
2 changes: 1 addition & 1 deletion lint-staged.config.js
@@ -1,4 +1,4 @@
module.exports = {
"*": ["prettier --write --ignore-unknown", "cspell"],
"*": ["prettier --write --ignore-unknown", "cspell --no-must-find-files"],
"*.js": ["eslint --cache --fix"],
};

0 comments on commit c99c6e8

Please sign in to comment.