@magda/scripts 4.2.2-alpha.0 → 4.2.2

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": "@magda/scripts",
3
- "version": "4.2.2-alpha.0",
3
+ "version": "4.2.2",
4
4
  "description": "Scripts for building, running, and deploying MAGDA",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -18,13 +18,10 @@
18
18
  "run-typescript-in-nodemon": "run-typescript-in-nodemon.js",
19
19
  "retag-and-push": "retag-and-push.js",
20
20
  "generate-api-documentation": "generate-api-documentation.js",
21
- "create-secrets": "create-secrets/index.js",
22
21
  "set-scss-vars": "set-scss-vars.js",
23
- "pkg-create-secrets-script": "pkg create-secrets/index.js --out-path create-secrets/build",
24
22
  "create-region-synonym-file": "create-region-synonym-file.js",
25
23
  "org-tree": "org-tree/index.js",
26
24
  "acs-cmd": "acs-cmd/index.js",
27
- "set-user-password": "set-user-password.js",
28
25
  "create-api-key": "create-api-key.js",
29
26
  "update-helm-chart-version": "update-helm-chart-version.js",
30
27
  "check-release-version": "check-release-version.js"
@@ -45,7 +42,7 @@
45
42
  },
46
43
  "dependencies": {
47
44
  "@magda/esm-utils": "^1.0.1",
48
- "@magda/typescript-common": "^4.2.2-alpha.0",
45
+ "@magda/typescript-common": "^4.2.2",
49
46
  "ansi-styles": "^3.2.1",
50
47
  "apidoc": "https://github.com/magda-io/apidoc",
51
48
  "chalk": "^2.4.1",
@@ -67,7 +64,6 @@
67
64
  "node-fetch": "^3.3.2",
68
65
  "nodemon": "^1.11.0",
69
66
  "pg": "^8.11.3",
70
- "pwgen": "0.1.6",
71
67
  "stream-json": "^1.1.3",
72
68
  "strip-ansi": "^4.0.0",
73
69
  "strip-json-comments": "^2.0.1",
package/set-scss-vars.js CHANGED
@@ -6,7 +6,6 @@ const fse = require("fs-extra");
6
6
  const childProcess = require("child_process");
7
7
  const uniqid = require("uniqid");
8
8
 
9
- const appName = "magda-create-secrets";
10
9
  const pkg = require("./package.json");
11
10
 
12
11
  const program = require("commander");