We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 215b763 commit a832789Copy full SHA for a832789
.eslintrc.js
@@ -110,7 +110,7 @@ module.exports = {
110
{
111
files: ["tools/**/*.js"],
112
parserOptions: {
113
- ecmaVersion: 2018
+ ecmaVersion: 2020
114
},
115
rules: {
116
camelcase: "off"
tools/lib/makestuff.js
@@ -5,7 +5,7 @@ const _ = require('lodash');
5
const config = require("../build_config.js");
6
7
async function clean(directory) {
8
- let del = await import('del');
+ const del = await import('del');
9
del.deleteSync([directory]);
10
fs.mkdirSync(directory, { recursive: true });
11
}
0 commit comments