Skip to content

Commit f6dd0cc

Browse files
authored
Merge pull request phpbb#6921 from marc1706/ticket/17603
[ticket/17603] Remove unused gulp
2 parents 31c3632 + 66e151d commit f6dd0cc

6 files changed

Lines changed: 122 additions & 3141 deletions

File tree

.github/check-js.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,3 @@ npm ci > /dev/null
1616
set -x
1717
node_modules/eslint/bin/eslint.js "phpBB/**/*.js" --ignore-pattern "phpBB/ext/"
1818
node_modules/eslint/bin/eslint.js "phpBB/**/*.js.twig" --ignore-pattern "phpBB/ext/"
19-
node_modules/eslint/bin/eslint.js "gulpfile.js"

.postcss-sorting.json

Lines changed: 0 additions & 206 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { browser: browserGlobals, node: nodeGlobals, jquery: jqueryGlobals } = (await import('globals')).default;
1+
import globals from 'globals';
22

33
// File patterns to ignore
44
const IGNORED_FILES = [
@@ -49,9 +49,9 @@ const mainConfig = {
4949
ecmaVersion: 'latest',
5050
sourceType: 'module',
5151
globals: {
52-
...browserGlobals,
53-
...nodeGlobals,
54-
...jqueryGlobals,
52+
...globals.browser,
53+
...globals.node,
54+
...globals.jquery,
5555
},
5656
},
5757
rules: {

gulpfile.js

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)