terraform 1.21.0 → 1.22.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.
@@ -14,7 +14,7 @@ exports.compile = function(rootPath, filePath, options, callback){
14
14
  //outfile: publicPath,
15
15
  bundle: true,
16
16
  write: false,
17
- minify: options.hasOwnProperty("minify") ? options.minify : false,
17
+ minify: options.hasOwnProperty("minify") ? options.minify : true,
18
18
  plugins: [],
19
19
  //inject: [__dirname + "/react-shim.js"],
20
20
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "terraform",
3
- "version": "1.21.0",
3
+ "version": "1.22.0",
4
4
  "description": "pre-processor engine that powers the harp web server",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "main": "./lib/terraform",
10
10
  "scripts": {
11
- "test": "mocha --reporter spec",
12
- "test:css": "mocha test/stylesheets --reporter spec"
11
+ "prepare": "git config core.hooksPath ./hooks",
12
+ "test": "mocha test"
13
13
  },
14
14
  "author": "Brock Whitten <brock@chloi.io>",
15
15
  "contributors": [
@@ -43,17 +43,17 @@
43
43
  "license": "MIT",
44
44
  "dependencies": {
45
45
  "ejs": "3.1.8",
46
- "esbuild": "0.12.29",
47
- "lru-cache": "4.1.1",
48
- "marked": "4.0.18",
49
- "sass": "1.54.4",
46
+ "esbuild": "0.15.7",
47
+ "lru-cache": "7.14.0",
48
+ "marked": "4.1.0",
49
+ "sass": "1.54.9",
50
50
  "through": "2.3.8"
51
51
  },
52
52
  "devDependencies": {
53
- "coffeescript": "^2.5.1",
54
- "less": "^4.1.1",
53
+ "coffeescript": "2.7.0",
54
+ "less": "4.1.3",
55
55
  "mocha": "10.0.0",
56
56
  "should": "3.3.2",
57
- "stylus": "^0.56.0"
57
+ "stylus": "0.59.0"
58
58
  }
59
59
  }
package/.travis.yml DELETED
@@ -1,4 +0,0 @@
1
- sudo: false
2
- language: node_js
3
- node_js:
4
- - "16.1"