Skip to content

Commit

Permalink
Update devDependencies (#37177)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Sep 20, 2022
1 parent 6f65df4 commit d0117a1
Show file tree
Hide file tree
Showing 11 changed files with 475 additions and 483 deletions.
3 changes: 2 additions & 1 deletion build/.eslintrc.json
Expand Up @@ -9,6 +9,7 @@
"extends": "../.eslintrc.json",
"rules": {
"no-console": "off",
"strict": "error"
"strict": "error",
"unicorn/prefer-top-level-await": "off"
}
}
2 changes: 1 addition & 1 deletion build/build-plugins.js
Expand Up @@ -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')
Expand Down
4 changes: 2 additions & 2 deletions build/change-version.js
Expand Up @@ -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')
Expand Down
6 changes: 3 additions & 3 deletions build/generate-sri.js
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/rollup.config.js
@@ -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')
Expand Down
2 changes: 1 addition & 1 deletion build/vnu-jar.js
Expand Up @@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion build/zip-examples.js
Expand Up @@ -9,7 +9,7 @@

'use strict'

const path = require('path')
const path = require('node:path')
const sh = require('shelljs')

const pkg = require('../package.json')
Expand Down
2 changes: 1 addition & 1 deletion js/tests/karma.conf.js
Expand Up @@ -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')
Expand Down

0 comments on commit d0117a1

Please sign in to comment.