lerna-projen 0.1.317 → 0.1.319

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 (4) hide show
  1. package/.jsii +3 -3
  2. package/API.md +24 -0
  3. package/lib/index.js +2 -2
  4. package/package.json +10 -8
package/.jsii CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "constructs": "^10.3.0",
18
- "projen": "^0.78.2"
18
+ "projen": "^0.78.5"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -797,6 +797,6 @@
797
797
  "symbolId": "src/types:TaskCustomization"
798
798
  }
799
799
  },
800
- "version": "0.1.317",
801
- "fingerprint": "1lga6cAOBTp1a6IxIHiKSZO4LU6Sed6BLFYxe7/OR7Y="
800
+ "version": "0.1.319",
801
+ "fingerprint": "3vZQTJByDZnprn2KBAMJfhSxMFkVZNaJrTWZ2KyQmnU="
802
802
  }
package/API.md CHANGED
@@ -3073,6 +3073,7 @@ public readonly useWorkspaces: boolean;
3073
3073
  | **Name** | **Type** | **Description** |
3074
3074
  | --- | --- | --- |
3075
3075
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.DEFAULT_TASK">DEFAULT_TASK</a></code> | <code>string</code> | The name of the default task (the task executed when `projen` is run without arguments). |
3076
+ | <code><a href="#lerna-projen.LernaTypescriptProject.property.DEFAULT_TS_JEST_TRANFORM_PATTERN">DEFAULT_TS_JEST_TRANFORM_PATTERN</a></code> | <code>string</code> | *No description.* |
3076
3077
 
3077
3078
  ---
3078
3079
 
@@ -3091,6 +3092,16 @@ this task should synthesize the project files.
3091
3092
 
3092
3093
  ---
3093
3094
 
3095
+ ##### `DEFAULT_TS_JEST_TRANFORM_PATTERN`<sup>Required</sup> <a name="DEFAULT_TS_JEST_TRANFORM_PATTERN" id="lerna-projen.LernaTypescriptProject.property.DEFAULT_TS_JEST_TRANFORM_PATTERN"></a>
3096
+
3097
+ ```typescript
3098
+ public readonly DEFAULT_TS_JEST_TRANFORM_PATTERN: string;
3099
+ ```
3100
+
3101
+ - *Type:* string
3102
+
3103
+ ---
3104
+
3094
3105
  ## Structs <a name="Structs" id="Structs"></a>
3095
3106
 
3096
3107
  ### LernaCommonProjectOptions <a name="LernaCommonProjectOptions" id="lerna-projen.LernaCommonProjectOptions"></a>
@@ -5369,6 +5380,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5369
5380
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.tsconfig">tsconfig</a></code> | <code>projen.javascript.TypescriptConfigOptions</code> | Custom TSConfig. |
5370
5381
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.tsconfigDev">tsconfigDev</a></code> | <code>projen.javascript.TypescriptConfigOptions</code> | Custom tsconfig options for the development tsconfig.json file (used for testing). |
5371
5382
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.tsconfigDevFile">tsconfigDevFile</a></code> | <code>string</code> | The name of the development tsconfig.json file. |
5383
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.tsJestOptions">tsJestOptions</a></code> | <code>projen.typescript.TsJestOptions</code> | Options for ts-jest. |
5372
5384
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.typescriptVersion">typescriptVersion</a></code> | <code>string</code> | TypeScript version to use. |
5373
5385
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.independentMode">independentMode</a></code> | <code>boolean</code> | Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode. |
5374
5386
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.sinceLastRelease">sinceLastRelease</a></code> | <code>boolean</code> | (experimental) Flag to run tasks only for the packages that has changes since last release. |
@@ -7371,6 +7383,18 @@ The name of the development tsconfig.json file.
7371
7383
 
7372
7384
  ---
7373
7385
 
7386
+ ##### `tsJestOptions`<sup>Optional</sup> <a name="tsJestOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.tsJestOptions"></a>
7387
+
7388
+ ```typescript
7389
+ public readonly tsJestOptions: TsJestOptions;
7390
+ ```
7391
+
7392
+ - *Type:* projen.typescript.TsJestOptions
7393
+
7394
+ Options for ts-jest.
7395
+
7396
+ ---
7397
+
7374
7398
  ##### `typescriptVersion`<sup>Optional</sup> <a name="typescriptVersion" id="lerna-projen.LernaTypescriptProjectOptions.property.typescriptVersion"></a>
7375
7399
 
7376
7400
  ```typescript
package/lib/index.js CHANGED
@@ -92,7 +92,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
92
92
  }
93
93
  exports.LernaProject = LernaProject;
94
94
  _a = JSII_RTTI_SYMBOL_1;
95
- LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.317" };
95
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.319" };
96
96
  /**
97
97
  * @pjid lerna-ts-project
98
98
  */
@@ -125,7 +125,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
125
125
  }
126
126
  exports.LernaTypescriptProject = LernaTypescriptProject;
127
127
  _b = JSII_RTTI_SYMBOL_1;
128
- LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.317" };
128
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.319" };
129
129
  class LernaProjectFactory {
130
130
  constructor(project) {
131
131
  this.project = project;
package/package.json CHANGED
@@ -57,7 +57,7 @@
57
57
  "jsii-docgen": "^9.2.2",
58
58
  "jsii-pacmak": "^1.93.0",
59
59
  "jsii-rosetta": "5.x",
60
- "projen": "^0.78.2",
60
+ "projen": "^0.78.5",
61
61
  "standard-version": "^9",
62
62
  "ts-jest": "^29.1.1",
63
63
  "ts-node": "^10.9.2",
@@ -65,7 +65,7 @@
65
65
  },
66
66
  "peerDependencies": {
67
67
  "constructs": "^10.3.0",
68
- "projen": "^0.78.2"
68
+ "projen": "^0.78.5"
69
69
  },
70
70
  "dependencies": {
71
71
  "commander": "^11.1.0",
@@ -83,7 +83,7 @@
83
83
  ],
84
84
  "main": "lib/index.js",
85
85
  "license": "Apache-2.0",
86
- "version": "0.1.317",
86
+ "version": "0.1.319",
87
87
  "jest": {
88
88
  "testMatch": [
89
89
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -117,11 +117,13 @@
117
117
  }
118
118
  ]
119
119
  ],
120
- "preset": "ts-jest",
121
- "globals": {
122
- "ts-jest": {
123
- "tsconfig": "tsconfig.dev.json"
124
- }
120
+ "transform": {
121
+ "^.+\\.[t]sx?$": [
122
+ "ts-jest",
123
+ {
124
+ "tsconfig": "tsconfig.dev.json"
125
+ }
126
+ ]
125
127
  }
126
128
  },
127
129
  "types": "lib/index.d.ts",