auth0-deploy-cli 7.12.1 → 7.13.0

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": "auth0-deploy-cli",
3
- "version": "7.12.1",
3
+ "version": "7.13.0",
4
4
  "description": "A command line tool for deploying updates to your Auth0 tenant",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "lint": "eslint --ignore-path .eslintignore --ignore-pattern webpack . && kacl lint",
12
12
  "format": "npx prettier --write .",
13
13
  "pretest": "rimraf ./.nyc_output",
14
- "test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*'",
14
+ "test": "ts-mocha -p tsconfig.json --recursive 'test/**/*.test*' --timeout 5000",
15
15
  "build": "rimraf ./lib && npx tsc",
16
16
  "dev": "npx tsc --watch",
17
17
  "prepare": "npm run build",
@@ -34,13 +34,13 @@
34
34
  "@types/nconf": "^0.10.2",
35
35
  "@types/winston": "^2.4.4",
36
36
  "ajv": "^6.12.6",
37
- "auth0": "^2.40.0",
37
+ "auth0": "^2.42.0",
38
38
  "dot-prop": "^5.2.0",
39
- "fs-extra": "^7.0.0",
39
+ "fs-extra": "^10.1.0",
40
40
  "global-agent": "^2.1.12",
41
41
  "js-yaml": "^4.1.0",
42
42
  "lodash": "^4.17.20",
43
- "mkdirp": "^0.5.6",
43
+ "mkdirp": "^1.0.4",
44
44
  "nconf": "^0.12.0",
45
45
  "promise-pool-executor": "^1.1.1",
46
46
  "sanitize-filename": "^1.6.1",
@@ -52,8 +52,8 @@
52
52
  "devDependencies": {
53
53
  "@types/expect": "^24.3.0",
54
54
  "@types/mocha": "^9.1.0",
55
- "chai": "^4.3.6",
56
55
  "@typescript-eslint/parser": "^5.18.0",
56
+ "chai": "^4.3.6",
57
57
  "chai-as-promised": "^7.1.1",
58
58
  "cross-env": "^3.1.4",
59
59
  "eslint": "^7.28.0",
@@ -69,7 +69,7 @@
69
69
  "rimraf": "^3.0.2",
70
70
  "rmdir-sync": "^1.0.1",
71
71
  "ts-mocha": "^9.0.2",
72
- "typescript": "^4.6.3"
72
+ "typescript": "^4.6.4"
73
73
  },
74
74
  "overrides": {
75
75
  "istanbul-reports": "3.1.4"
@@ -1,22 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Script providing insight into the progress of migrating Deploy CLI source code to Typescript. See: DXCDT-70
4
- # This can be deleted once migration from JS => TS is complete
5
-
6
- echo "- - - - - Typescript Migration - - - - - -"
7
-
8
- locJs=$( (find ./src -name "*.js" -print0 | xargs -0 cat) | wc -l | xargs)
9
- locTs=$( (find ./src -name "*.ts" -print0 | xargs -0 cat) | wc -l | xargs)
10
- totalLoc=$(expr ${locJs} + ${locTs})
11
- percentLocMigrated=$(expr $(expr ${locTs} \* 100) / ${totalLoc})
12
-
13
- echo "${locTs} of ${totalLoc} (${percentLocMigrated}%) lines of code migrated to Typescript"
14
-
15
- numTsFiles=$(find ./src -name "*.ts" | wc -l | xargs)
16
- numJsFiles=$(find ./src -name "*.js" | wc -l | xargs)
17
- totalNumFiles=$(expr ${numTsFiles} + ${numJsFiles})
18
- percentFilesMigrated=$(expr $(expr ${numTsFiles} \* 100) / ${totalNumFiles})
19
-
20
- echo "${numTsFiles} of ${totalNumFiles} (${percentFilesMigrated}%) files migrated to Typescript"
21
-
22
- echo "- - - - - - - - - - - - - - - - - - - - - -"