@jahed/terraform 1.3.4 → 1.3.6
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/hashes.txt +14 -14
- package/lib/types.d.ts +3 -3
- package/package.json +4 -4
package/hashes.txt
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
5ab98e2d9f3b908fd6422a0562e829cc17eb055c8e242427d16d0a13506d401b terraform_1.3.6_darwin_amd64.zip
|
|
2
|
+
f1c20b2180c982bdda8384b1316209d20fc55def4f0354ead7a2a8e04c89f54e terraform_1.3.6_darwin_arm64.zip
|
|
3
|
+
b0177ed376d94b1866d93972b8dcf227ae81230408fedccb3f2e269c958326fa terraform_1.3.6_freebsd_386.zip
|
|
4
|
+
d69d7794f61a18d534a8716fd6ed97b1994b769dc63c5ac7eda189a83e5ba4f5 terraform_1.3.6_freebsd_amd64.zip
|
|
5
|
+
33e3a65abc42ab2be4bed5615049bc4a44fad821ec0ba50f535e6d7a82a5ac35 terraform_1.3.6_freebsd_arm.zip
|
|
6
|
+
f19ff7715cffa5064c39d07d83d2dfdb0a15fd3ae4ffb35beabca95ed8b9a185 terraform_1.3.6_linux_386.zip
|
|
7
|
+
bb44a4c2b0a832d49253b9034d8ccbd34f9feeb26eda71c665f6e7fa0861f49b terraform_1.3.6_linux_amd64.zip
|
|
8
|
+
f4b1af29094290f1b3935c29033c4e5291664ee2c015ca251a020dd425c847c3 terraform_1.3.6_linux_arm64.zip
|
|
9
|
+
c0efeb1a94ab503c7dfb604262dee162246f3207600588a735d15ec75fe983ef terraform_1.3.6_linux_arm.zip
|
|
10
|
+
41f2faad84eddd18c41b1d27666d9731f61ea61acf76befb936a7ac99f3414d0 terraform_1.3.6_openbsd_386.zip
|
|
11
|
+
97a45d0c18fd86efdf365654c8d67882bc1cfb181d2a1fd081bd039f69a7b00d terraform_1.3.6_openbsd_amd64.zip
|
|
12
|
+
7e10c847f499f767d22bed267c2f662e1c4cbc43bd5346b13c422c064f144746 terraform_1.3.6_solaris_amd64.zip
|
|
13
|
+
2bd24fdb2a7fdb042ab4b5911d682d6fa2277fa784e1a18a98c7f0c9b5945324 terraform_1.3.6_windows_386.zip
|
|
14
|
+
cb2d74be073c52364c1c74de1256638ad1bdb8a5446b535d83b2ad1ca3910dd9 terraform_1.3.6_windows_amd64.zip
|
package/lib/types.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
export
|
|
2
|
+
export type Outputs = {
|
|
3
3
|
path: string;
|
|
4
4
|
version: string;
|
|
5
5
|
filename: string;
|
|
6
6
|
versionedFilename: string;
|
|
7
7
|
originalFilename: string;
|
|
8
8
|
};
|
|
9
|
-
export
|
|
9
|
+
export type DownloadArgs = {
|
|
10
10
|
version: string;
|
|
11
11
|
platform: string;
|
|
12
12
|
architecture: string;
|
|
13
13
|
};
|
|
14
|
-
export
|
|
14
|
+
export type ExtractArgs = {
|
|
15
15
|
outputs: Outputs;
|
|
16
16
|
buffer: Buffer;
|
|
17
17
|
outdir: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jahed/terraform",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "A wrapper which downloads and runs Terraform locally via npm, yarn and more.",
|
|
5
5
|
"author": "Jahed",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"@types/find-cache-dir": "^3.2.1",
|
|
38
38
|
"@types/node": "^16.18.3",
|
|
39
39
|
"@types/yauzl": "^2.10.0",
|
|
40
|
-
"npm-check-updates": "^16.3
|
|
41
|
-
"prettier": "^2.
|
|
42
|
-
"typescript": "4.
|
|
40
|
+
"npm-check-updates": "^16.4.3",
|
|
41
|
+
"prettier": "^2.8.0",
|
|
42
|
+
"typescript": "4.9.x"
|
|
43
43
|
}
|
|
44
44
|
}
|