deployable-awscdk-app-ts 0.1.893 → 0.1.895

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/.jsii CHANGED
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "constructs": "^10.8.1",
14
- "projen": "^0.103.3"
14
+ "projen": "^0.103.10"
15
15
  },
16
16
  "dependencyClosure": {
17
17
  "constructs": {
@@ -54,9 +54,11 @@
54
54
  "projen.java": {},
55
55
  "projen.javascript": {},
56
56
  "projen.javascript.biome_config": {},
57
+ "projen.polaris": {},
57
58
  "projen.python": {},
58
59
  "projen.python.uvConfig": {},
59
60
  "projen.release": {},
61
+ "projen.sonarqube": {},
60
62
  "projen.typescript": {},
61
63
  "projen.vscode": {},
62
64
  "projen.web": {}
@@ -2049,6 +2051,6 @@
2049
2051
  "symbolId": "src/types:EnvironmentOptions"
2050
2052
  }
2051
2053
  },
2052
- "version": "0.1.893",
2053
- "fingerprint": "7IY4/oiUr6esXFKBmO2UXmTPm+IPHDFnv7+lkaCnJOE="
2054
+ "version": "0.1.895",
2055
+ "fingerprint": "PixkZ9BvGi0Wwasf4KFxfmQEwKUxY4V02qgtqIJBSNo="
2054
2056
  }
package/API.md CHANGED
@@ -1886,6 +1886,7 @@ const deployableAwsCdkTypeScriptAppOptions: DeployableAwsCdkTypeScriptAppOptions
1886
1886
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.tsconfigDev">tsconfigDev</a></code> | <code>projen.javascript.TypescriptConfigOptions</code> | Custom tsconfig options for the development tsconfig.json file (used for testing). |
1887
1887
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.tsconfigDevFile">tsconfigDevFile</a></code> | <code>string</code> | The name (and path) of the development tsconfig file. |
1888
1888
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.tsJestOptions">tsJestOptions</a></code> | <code>projen.typescript.TsJestOptions</code> | Options for ts-jest. |
1889
+ | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.typecheckTests">typecheckTests</a></code> | <code>boolean</code> | Type-check the test suite as part of the `test` task. |
1889
1890
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.typescriptVersion">typescriptVersion</a></code> | <code>string</code> | TypeScript version to use. |
1890
1891
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.buildCommand">buildCommand</a></code> | <code>string</code> | A command to execute before synthesis. |
1891
1892
  | <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.cdkout">cdkout</a></code> | <code>string</code> | cdk.out directory. |
@@ -4121,6 +4122,21 @@ Options for ts-jest.
4121
4122
 
4122
4123
  ---
4123
4124
 
4125
+ ##### `typecheckTests`<sup>Optional</sup> <a name="typecheckTests" id="deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.typecheckTests"></a>
4126
+
4127
+ ```typescript
4128
+ public readonly typecheckTests: boolean;
4129
+ ```
4130
+
4131
+ - *Type:* boolean
4132
+ - *Default:* false
4133
+
4134
+ Type-check the test suite as part of the `test` task.
4135
+
4136
+ Adds a `tsc --noEmit` step against the development tsconfig.
4137
+
4138
+ ---
4139
+
4124
4140
  ##### `typescriptVersion`<sup>Optional</sup> <a name="typescriptVersion" id="deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.typescriptVersion"></a>
4125
4141
 
4126
4142
  ```typescript
package/lib/index.js CHANGED
@@ -47,7 +47,7 @@ __exportStar(require("./types"), exports);
47
47
  exports.utils = __importStar(require("./utils"));
48
48
  __exportStar(require("./steps"), exports);
49
49
  class DeployableAwsCdkTypeScriptApp extends projen_1.awscdk.AwsCdkTypeScriptApp {
50
- static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptApp", version: "0.1.893" };
50
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptApp", version: "0.1.895" };
51
51
  /**
52
52
  * If the diff output is enabled, adds a script and a job step to generate the CDK diff output to a file in cdk.out
53
53
  * @returns void
package/lib/steps.js CHANGED
@@ -19,7 +19,7 @@ const formattedDiffAnnotationCommentStepId = 'formatted_diff_annotation_comment'
19
19
  class DeployableAwsCdkTypeScriptAppStepsFactory {
20
20
  project;
21
21
  props;
22
- static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppStepsFactory", version: "0.1.893" };
22
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppStepsFactory", version: "0.1.895" };
23
23
  /**
24
24
  * Validate that the provided environment deployment dependencies are valid
25
25
  * @param deployOptions The deployment options
package/package.json CHANGED
@@ -31,7 +31,7 @@
31
31
  "jsii-docgen": "^10.5.0",
32
32
  "jsii-pacmak": "^1.140.0",
33
33
  "jsii-rosetta": "5.9.x",
34
- "projen": "^0.103.3",
34
+ "projen": "^0.103.10",
35
35
  "ts-jest": "^29.4.12",
36
36
  "ts-node": "^10.9.2",
37
37
  "typescript": "^5.9.3",
@@ -39,10 +39,10 @@
39
39
  },
40
40
  "peerDependencies": {
41
41
  "constructs": "^10.8.1",
42
- "projen": "^0.103.3"
42
+ "projen": "^0.103.10"
43
43
  },
44
44
  "dependencies": {
45
- "projen": "^0.103.3",
45
+ "projen": "^0.103.10",
46
46
  "semver": "^7.8.5"
47
47
  },
48
48
  "bundledDependencies": [
@@ -70,7 +70,7 @@
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
- "version": "0.1.893",
73
+ "version": "0.1.895",
74
74
  "jest": {
75
75
  "coverageProvider": "v8",
76
76
  "testMatch": [