@sequencemedia/gulp-cli 1.1.164 → 1.1.166

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencemedia/gulp-cli",
3
- "version": "1.1.164",
3
+ "version": "1.1.166",
4
4
  "description": "The command line interface to Gulp",
5
5
  "keywords": [
6
6
  "build",
@@ -37,7 +37,7 @@
37
37
  "gulp": "./bin/gulp.mjs"
38
38
  },
39
39
  "dependencies": {
40
- "@sequencemedia/gulp-log": "^1.0.151",
40
+ "@sequencemedia/gulp-log": "^1.0.157",
41
41
  "@sequencemedia/liftoff": "1.0.0",
42
42
  "ansi-colors": "^4.1.3",
43
43
  "archy": "^1.0.0",
@@ -55,16 +55,16 @@
55
55
  "yargs": "^17.7.2"
56
56
  },
57
57
  "devDependencies": {
58
- "@babel/core": "^7.24.6",
59
- "@babel/eslint-parser": "^7.24.6",
60
- "@babel/plugin-syntax-import-assertions": "^7.24.6",
61
- "@babel/preset-env": "^7.24.6",
62
- "@sequencemedia/hooks": "^1.0.493",
58
+ "@babel/core": "^7.24.7",
59
+ "@babel/eslint-parser": "^7.24.7",
60
+ "@babel/plugin-syntax-import-assertions": "^7.24.7",
61
+ "@babel/preset-env": "^7.24.7",
62
+ "@sequencemedia/hooks": "^1.0.495",
63
63
  "chai": "^5.1.1",
64
64
  "eslint": "8.57.0",
65
65
  "eslint-config-standard": "^17.1.0",
66
66
  "husky": "^9.0.11",
67
- "mocha": "^10.4.0",
67
+ "mocha": "^10.5.2",
68
68
  "rimraf": "^5.0.7",
69
69
  "sinon": "^18.0.0"
70
70
  },
@@ -33,7 +33,7 @@ export default async function loadConfigFiles (configFiles = {}, configFileOrder
33
33
 
34
34
  const module = (
35
35
  extname(filePath) === '.json'
36
- ? await import(fileUrl, { assert: { type: 'json' } })
36
+ ? await import(fileUrl, { with: { type: 'json' } })
37
37
  : await import(fileUrl)
38
38
  )
39
39
 
@@ -17,7 +17,7 @@ async function getGulpCliVersion () {
17
17
  default: {
18
18
  version
19
19
  }
20
- } = await import(fileUrl, { assert: { type: 'json' } })
20
+ } = await import(fileUrl, { with: { type: 'json' } })
21
21
 
22
22
  return version
23
23
  }