Skip to content

Commit

Permalink
refactor: explicitly use built-in path and fs modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Feb 15, 2024
1 parent 624ddaa commit b16e80f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 21 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,10 @@
"eslint": "8.56.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-react": "7.33.2",
"fs": "0.0.2",
"laravel-mix": "6.0.49",
"npm-check-updates": "16.14.14",
"npm-package-json-lint": "7.1.0",
"npm-run-all": "4.1.5",
"path": "0.12.7",
"resolve-url-loader": "5.0.0",
"stylelint": "16.2.1",
"stylelint-config-standard-scss": "13.0.0",
Expand Down
17 changes: 0 additions & 17 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions webpack.mix.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const mix = require('laravel-mix'),
fs = require('fs'),
path = require('path');
fs = require('node:fs'),
path = require('node:path');

const ALLOWED_FILES = ['.scss', 'client.js'];
const MIX_OPTIONS = {
Expand Down

0 comments on commit b16e80f

Please sign in to comment.