@jahed/terraform 1.0.10 → 1.1.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/README.md +3 -4
- package/hashes.txt +14 -14
- package/lib/getPlatform.js +1 -0
- package/package.json +12 -15
package/README.md
CHANGED
|
@@ -119,10 +119,9 @@ directory. For more information, check
|
|
|
119
119
|
### How does this package use Terraform?
|
|
120
120
|
|
|
121
121
|
This package essentially wraps a Terraform executable. The executable is
|
|
122
|
-
downloaded when the package is first called. Every time you run
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
stdout, etc.
|
|
122
|
+
downloaded when the package is first called. Every time you run it, it runs
|
|
123
|
+
a NodeJS script which ensures Terraform has been downloaded and launches it in
|
|
124
|
+
a child process, forwarding arguments, stdin, stdout, etc.
|
|
126
125
|
|
|
127
126
|
### How is this package versioned?
|
|
128
127
|
|
package/hashes.txt
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
214da2e97f95389ba7557b8fcb11fe05a23d877e0fd67cd97fcbc160560078f1 terraform_1.1.2_darwin_amd64.zip
|
|
2
|
+
39e28f49a753c99b5e2cb30ac8146fb6b48da319c9db9d152b1e8a05ec9d4a13 terraform_1.1.2_darwin_arm64.zip
|
|
3
|
+
4163bc7f77d4fb8db6dfa4129628674752bdf2a6a1b9d613c6f8e48f5e185049 terraform_1.1.2_freebsd_386.zip
|
|
4
|
+
40c8c98978af2ade2aee551991b227e77003ef0a60d0a42a0adb2de5d001c080 terraform_1.1.2_freebsd_amd64.zip
|
|
5
|
+
4c9484af969d20718533ed41cdac87548beeec165ae467cc74e0e19b7f5b6d2f terraform_1.1.2_freebsd_arm.zip
|
|
6
|
+
9aa333f3c105b2636a335eb48af8ea7aa434cb9e52246943fa2a55c9fbab494c terraform_1.1.2_linux_386.zip
|
|
7
|
+
734efa82e2d0d3df8f239ce17f7370dabd38e535d21e64d35c73e45f35dfa95c terraform_1.1.2_linux_amd64.zip
|
|
8
|
+
088e2226d1ddb7f68a4f65c704022a1cfdbf20fe40f02e0c3646942f211fd746 terraform_1.1.2_linux_arm64.zip
|
|
9
|
+
afba01532a637df6209dbc38e9dab75add13ff39fdb3254f4ad2c26b0e652df0 terraform_1.1.2_linux_arm.zip
|
|
10
|
+
e38dedbc9b5a7fd6335c77463042b3948e9339bff3c2b8f702d176b8eaaf4f78 terraform_1.1.2_openbsd_386.zip
|
|
11
|
+
a2d12bc2348f270efe92fdacd3b8db4ca32182a05397bf1802a3226e8c4f9f58 terraform_1.1.2_openbsd_amd64.zip
|
|
12
|
+
46dcaa93437ed85ed3e8bfbdbaa14155ff02b3bd955988c523acfd6c0e4733ef terraform_1.1.2_solaris_amd64.zip
|
|
13
|
+
6aa818b9ad9e7de02f8c45bc7fb8f6a0b0d603f22d48711059d74a013696bb00 terraform_1.1.2_windows_386.zip
|
|
14
|
+
4c40b48b78e1c7b049fcff2f0cbf287b3df1c6d602fd6635189c45414ed16f94 terraform_1.1.2_windows_amd64.zip
|
package/lib/getPlatform.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jahed/terraform",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A wrapper which downloads and runs Terraform locally via npm,
|
|
3
|
+
"version": "1.1.2",
|
|
4
|
+
"description": "A wrapper which downloads and runs Terraform locally via npm, yarn and more.",
|
|
5
5
|
"author": "Jahed",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": "https://github.com/jahed/node-terraform",
|
|
@@ -25,27 +25,24 @@
|
|
|
25
25
|
"lint": "prettier -c **/*.{js,ts,md,json,yml}",
|
|
26
26
|
"build": "rimraf ./lib && tsc",
|
|
27
27
|
"test": "./tests/run.sh",
|
|
28
|
-
"version": "./scripts/version.sh"
|
|
29
|
-
"deploy": "yarn lint && yarn version && yarn build && yarn test && yarn publish --non-interactive && git push --follow-tags",
|
|
30
|
-
"version-check": "./scripts/version-check.sh",
|
|
31
|
-
"dependency-check": "./scripts/dependency-check.sh",
|
|
32
|
-
"deps": "yarn upgrade-interactive --latest && yarn upgrade && git add yarn.lock '*package.json' && git commit -m 'build(deps): upgrade dependencies'"
|
|
28
|
+
"version": "./scripts/verify-version.sh"
|
|
33
29
|
},
|
|
34
30
|
"dependencies": {
|
|
35
31
|
"@jahed/promises": "^1.0.2",
|
|
36
32
|
"find-cache-dir": "^3.3.2",
|
|
37
|
-
"node-fetch": "^2.6.
|
|
33
|
+
"node-fetch": "^2.6.6",
|
|
38
34
|
"rimraf": "^3.0.2",
|
|
39
35
|
"yauzl": "^2.10.0"
|
|
40
36
|
},
|
|
41
37
|
"devDependencies": {
|
|
42
38
|
"@tsconfig/node12": "^1.0.9",
|
|
43
|
-
"@types/find-cache-dir": "^3.2.
|
|
44
|
-
"@types/node": "^
|
|
45
|
-
"@types/node-fetch": "^2.5.
|
|
46
|
-
"@types/rimraf": "^3.0.
|
|
47
|
-
"@types/yauzl": "^2.9.
|
|
48
|
-
"
|
|
49
|
-
"
|
|
39
|
+
"@types/find-cache-dir": "^3.2.1",
|
|
40
|
+
"@types/node": "^16.11.14",
|
|
41
|
+
"@types/node-fetch": "^2.5.12",
|
|
42
|
+
"@types/rimraf": "^3.0.2",
|
|
43
|
+
"@types/yauzl": "^2.9.2",
|
|
44
|
+
"npm-check-updates": "^12.0.5",
|
|
45
|
+
"prettier": "^2.5.1",
|
|
46
|
+
"typescript": "4.5.x"
|
|
50
47
|
}
|
|
51
48
|
}
|