Skip to content

Commit

Permalink
Partial updates for core devDependencies (ampproject#39766)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrozenberg authored Jan 26, 2024
1 parent 474174b commit ee8c32b
Show file tree
Hide file tree
Showing 6 changed files with 779 additions and 1,650 deletions.
2 changes: 1 addition & 1 deletion build-system/pr-check/build-targets.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = require('../test-configs/config');
const fastGlob = require('fast-glob');
const fs = require('fs');
const json5 = require('json5');
const minimatch = require('minimatch');
const {minimatch} = require('minimatch');
const path = require('path');
const {cyan} = require('kleur/colors');
const {getLoggingPrefix, logWithoutTimestamp} = require('../common/logging');
Expand Down
2 changes: 1 addition & 1 deletion build-system/tasks/dep-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const depCheckConfig = require('../test-configs/dep-check-config');
const esbuild = require('esbuild');
const fs = require('fs-extra');
const minimatch = require('minimatch');
const {minimatch} = require('minimatch');
const path = require('path');
const {
createCtrlcHandler,
Expand Down
2 changes: 1 addition & 1 deletion build-system/tasks/e2e/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function createMocha_() {
slow: SLOW_TEST_THRESHOLD_MS,
reporter,
retries: TEST_RETRIES,
fullStackTrace: true,
fullTrace: true,
reporterOptions: isCiBuild()
? {
mochaFile: 'result-reports/e2e.xml',
Expand Down
2 changes: 1 addition & 1 deletion build-system/tasks/runtime-test/helpers-unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const config = require('../../../tsconfig.base.json');
const fastGlob = require('fast-glob');
const fs = require('fs');
const listImportsExports = require('list-imports-exports');
const minimatch = require('minimatch');
const {minimatch} = require('minimatch');
const path = require('path');
const testConfig = require('../../test-configs/config');
const {cyan, green} = require('kleur/colors');
Expand Down
Loading

0 comments on commit ee8c32b

Please sign in to comment.