2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-02 16:04:07 +03:00

Update devDependencies (#37177)

This commit is contained in:
XhmikosR
2022-09-20 08:09:14 +03:00
committed by GitHub
parent 6f65df4fae
commit d0117a17d8
11 changed files with 475 additions and 483 deletions
+2 -1
View File
@@ -9,6 +9,7 @@
"extends": "../.eslintrc.json",
"rules": {
"no-console": "off",
"strict": "error"
"strict": "error",
"unicorn/prefer-top-level-await": "off"
}
}
+1 -1
View File
@@ -9,7 +9,7 @@
'use strict'
const path = require('path')
const path = require('node:path')
const rollup = require('rollup')
const globby = require('globby')
const { babel } = require('@rollup/plugin-babel')
+2 -2
View File
@@ -9,8 +9,8 @@
'use strict'
const fs = require('fs').promises
const path = require('path')
const fs = require('node:fs').promises
const path = require('node:path')
const globby = require('globby')
const VERBOSE = process.argv.includes('--verbose')
+3 -3
View File
@@ -12,9 +12,9 @@
'use strict'
const crypto = require('crypto')
const fs = require('fs')
const path = require('path')
const crypto = require('node:crypto')
const fs = require('node:fs')
const path = require('node:path')
const sh = require('shelljs')
sh.config.fatal = true
+1 -1
View File
@@ -1,6 +1,6 @@
'use strict'
const path = require('path')
const path = require('node:path')
const { babel } = require('@rollup/plugin-babel')
const { nodeResolve } = require('@rollup/plugin-node-resolve')
const replace = require('@rollup/plugin-replace')
+1 -1
View File
@@ -9,7 +9,7 @@
'use strict'
const { execFile, spawn } = require('child_process')
const { execFile, spawn } = require('node:child_process')
const vnu = require('vnu-jar')
execFile('java', ['-version'], (error, stdout, stderr) => {
+1 -1
View File
@@ -9,7 +9,7 @@
'use strict'
const path = require('path')
const path = require('node:path')
const sh = require('shelljs')
const pkg = require('../package.json')