terraform 1.20.0 → 1.21.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/lib/helpers/raw.js +1 -1
- package/package.json +7 -8
package/lib/helpers/raw.js
CHANGED
|
@@ -476,7 +476,7 @@ exports.shouldIgnore = function(filePath){
|
|
|
476
476
|
|
|
477
477
|
// test for starting underscore, .git, .gitignore
|
|
478
478
|
var map = arr.map(function(item){
|
|
479
|
-
return item[0] === "_" || item.indexOf(".git") === 0
|
|
479
|
+
return item[0] === "_" || item.indexOf("%5f") === 0 || item.indexOf(".git") === 0
|
|
480
480
|
})
|
|
481
481
|
|
|
482
482
|
// return if any item starts with underscore
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terraform",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
4
4
|
"description": "pre-processor engine that powers the harp web server",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,19 +42,18 @@
|
|
|
42
42
|
],
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"ejs": "
|
|
46
|
-
"esbuild": "
|
|
45
|
+
"ejs": "3.1.8",
|
|
46
|
+
"esbuild": "0.12.29",
|
|
47
47
|
"lru-cache": "4.1.1",
|
|
48
|
-
"marked": "
|
|
49
|
-
"
|
|
50
|
-
"sass": "^1.29.0",
|
|
48
|
+
"marked": "4.0.18",
|
|
49
|
+
"sass": "1.54.4",
|
|
51
50
|
"through": "2.3.8"
|
|
52
51
|
},
|
|
53
52
|
"devDependencies": {
|
|
54
53
|
"coffeescript": "^2.5.1",
|
|
55
54
|
"less": "^4.1.1",
|
|
56
|
-
"mocha": "
|
|
55
|
+
"mocha": "10.0.0",
|
|
57
56
|
"should": "3.3.2",
|
|
58
|
-
"stylus": "0.
|
|
57
|
+
"stylus": "^0.56.0"
|
|
59
58
|
}
|
|
60
59
|
}
|