projen-cdktf-hybrid-construct 0.1.50 → 0.1.51

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.
Files changed (2) hide show
  1. package/README.md +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,7 +67,7 @@ project.synth();
67
67
 
68
68
  If you want to republish an existing Terraform module as a CDKTF construct or if you want to repackage them with an easier to use API you can use the `TerraformModule` template.
69
69
 
70
- ````js
70
+ ```js
71
71
  const { HybridModule } = require("projen-cdktf-hybrid-construct");
72
72
 
73
73
  const project = new TerraformModule({
@@ -91,8 +91,7 @@ const project = new TerraformModule({
91
91
  });
92
92
 
93
93
  project.synth();
94
-
95
-
94
+ ```
96
95
 
97
96
  ## Publishing
98
97
 
@@ -127,7 +126,7 @@ new HybridModule({
127
126
  module: name.replace(/-/g, "_"),
128
127
  },
129
128
  });
130
- ````
129
+ ```
131
130
 
132
131
  #### Maven (Java)
133
132
 
package/package.json CHANGED
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "main": "lib/index.js",
61
61
  "license": "MIT",
62
- "version": "0.1.50",
62
+ "version": "0.1.51",
63
63
  "jest": {
64
64
  "testMatch": [
65
65
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",