Update devDependencies (#37177)

This commit is contained in:
XhmikosR 2022-09-20 08:09:14 +03:00 committed by GitHub
parent 6f65df4fae
commit d0117a17d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 475 additions and 483 deletions

View File

@ -9,6 +9,7 @@
"extends": "../.eslintrc.json",
"rules": {
"no-console": "off",
"strict": "error"
"strict": "error",
"unicorn/prefer-top-level-await": "off"
}
}

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')

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')

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

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')

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) => {

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')

View File

@ -2,7 +2,7 @@
'use strict'
const path = require('path')
const path = require('node:path')
const ip = require('ip')
const { babel } = require('@rollup/plugin-babel')
const istanbul = require('rollup-plugin-istanbul')

918
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -105,14 +105,14 @@
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/preset-env": "^7.19.0",
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@popperjs/core": "^2.11.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"autoprefixer": "^10.4.10",
"autoprefixer": "^10.4.11",
"bundlewatch": "^0.3.3",
"clean-css-cli": "^5.6.1",
"cross-env": "^7.0.3",
@ -120,11 +120,11 @@
"eslint-config-xo": "^0.42.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"find-unused-sass-variables": "^4.0.4",
"globby": "^11.1.0",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.89.0",
"hugo-bin": "^0.91.1",
"ip": "^2.0.0",
"jquery": "^3.6.1",
"karma": "^6.4.0",
@ -137,7 +137,7 @@
"karma-jasmine-html-reporter": "^2.0.0",
"karma-rollup-preprocessor": "7.0.7",
"lockfile-lint": "^4.8.0",
"nodemon": "^2.0.19",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
@ -146,7 +146,7 @@
"rtlcss": "^4.0.0",
"sass": "^1.54.9",
"shelljs": "^0.8.5",
"stylelint": "^14.11.0",
"stylelint": "^14.12.0",
"stylelint-config-twbs-bootstrap": "^6.0.0",
"terser": "^5.15.0",
"vnu-jar": "21.10.12"

View File

@ -48,6 +48,7 @@
"prefer-template": "error",
"strict": "error",
"unicorn/no-array-for-each": "off",
"unicorn/numeric-separators-style": "off"
"unicorn/numeric-separators-style": "off",
"unicorn/prefer-node-protocol": "off"
}
}