terraform 1.22.1 → 1.23.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.
@@ -5,6 +5,8 @@ var marked = require("marked").setOptions({
5
5
  headerPrefix: '',
6
6
  gfm: true,
7
7
  tables: true,
8
+ mangle: false,
9
+ headerIds: false
8
10
  })
9
11
  var renderer = new marked.Renderer()
10
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terraform",
3
- "version": "1.22.1",
3
+ "version": "1.23.0",
4
4
  "description": "pre-processor engine that powers the harp web server",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,10 @@
9
9
  "main": "./lib/terraform",
10
10
  "scripts": {
11
11
  "prepare": "git config core.hooksPath ./hooks",
12
- "test": "mocha test"
12
+ "test": "mocha test",
13
+ "preversion": "npm test",
14
+ "version": "npm publish",
15
+ "postversion": "git push --no-verify && git push --tags --no-verify"
13
16
  },
14
17
  "author": "Brock Whitten <brock@chloi.io>",
15
18
  "contributors": [
@@ -42,17 +45,17 @@
42
45
  ],
43
46
  "license": "MIT",
44
47
  "dependencies": {
45
- "ejs": "3.1.8",
46
- "esbuild": "0.15.7",
47
- "lru-cache": "7.14.0",
48
- "marked": "4.1.0",
49
- "sass": "1.54.9",
48
+ "ejs": "3.1.9",
49
+ "esbuild": "0.18.17",
50
+ "lru-cache": "10.0.0",
51
+ "marked": "5.1.2",
52
+ "sass": "1.64.1",
50
53
  "through": "2.3.8"
51
54
  },
52
55
  "devDependencies": {
53
56
  "coffeescript": "2.7.0",
54
57
  "less": "4.1.3",
55
- "mocha": "10.0.0",
58
+ "mocha": "10.2.0",
56
59
  "should": "3.3.2",
57
60
  "stylus": "0.59.0"
58
61
  }