@jahed/terraform 1.0.8 → 1.1.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/README.md +3 -4
- package/hashes.txt +14 -14
- package/lib/debug.d.ts +2 -1
- 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
|
+
6fb2af160879d807291980642efa93cc9a97ddf662b17cc3753065c974a5296d terraform_1.1.0_darwin_amd64.zip
|
|
2
|
+
f69e0613f09c21d44ce2131b20e8b97909f3fc7aa90c443639475f5e474a22ec terraform_1.1.0_darwin_arm64.zip
|
|
3
|
+
c04d5422cd44350e653064d80651dbf7c12cd4bf82bb013017fe2d9e230f0726 terraform_1.1.0_freebsd_386.zip
|
|
4
|
+
3506199574b49312a353c15f1e7683c1e5f3f41f46b5521070a8e73bb4ac38e5 terraform_1.1.0_freebsd_amd64.zip
|
|
5
|
+
72cc644b324efaf7691a64da3097f02cfafb1d0d5c053f63d6bd6ad3faa4112b terraform_1.1.0_freebsd_arm.zip
|
|
6
|
+
c0ca09a32aad1ff2ebd6eb468b2a3b7f58c2cb75989def314208fecf36442dfe terraform_1.1.0_linux_386.zip
|
|
7
|
+
763378aa75500ce5ba67d0cba8aa605670cd28bf8bafc709333a30908441acb5 terraform_1.1.0_linux_amd64.zip
|
|
8
|
+
6697e9a263e264310373f3c91bf83f4cbfeb67b13994d2a8f7bcc492b554552e terraform_1.1.0_linux_arm64.zip
|
|
9
|
+
40e7b0c745832dbeaeca0e74b6a93267942236573486390806d63e0f87427d7a terraform_1.1.0_linux_arm.zip
|
|
10
|
+
5b7e01ad7440c0c75e28bda0829c4fd184e08ca2cb8bc74dc2795c042f874f86 terraform_1.1.0_openbsd_386.zip
|
|
11
|
+
d66f197ce000110fa25c7799afbdd0074003169004da10b87dd8a39bbacfd16f terraform_1.1.0_openbsd_amd64.zip
|
|
12
|
+
41fa21c6d295395d95c11496a3caf8d0cf78a9eb8d6d07721c48849f206dc38d terraform_1.1.0_solaris_amd64.zip
|
|
13
|
+
e1498d7e3e7254b24102e7d2d683f84b465bf2b6ca24fb648e80055fb9298ad8 terraform_1.1.0_windows_386.zip
|
|
14
|
+
a7cb68e34c49336f8bd9792dba3ee350a9eccffb0b9c3ce7275e18e35ad4776b terraform_1.1.0_windows_amd64.zip
|
package/lib/debug.d.ts
CHANGED
package/lib/getPlatform.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jahed/terraform",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "A wrapper which downloads and runs Terraform locally via npm,
|
|
3
|
+
"version": "1.1.0",
|
|
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.11",
|
|
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.2",
|
|
45
|
+
"prettier": "^2.5.1",
|
|
46
|
+
"typescript": "4.5.x"
|
|
50
47
|
}
|
|
51
48
|
}
|