lerna-projen 0.1.107 → 0.1.109
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 +3 -3
- package/API.md +28 -0
- package/lib/index.js +2 -2
- package/package.json +3 -3
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"projen": "^0.71.
|
|
17
|
+
"projen": "^0.71.81"
|
|
18
18
|
},
|
|
19
19
|
"dependencyClosure": {
|
|
20
20
|
"projen": {
|
|
@@ -781,6 +781,6 @@
|
|
|
781
781
|
"symbolId": "src/types:TaskCustomization"
|
|
782
782
|
}
|
|
783
783
|
},
|
|
784
|
-
"version": "0.1.
|
|
785
|
-
"fingerprint": "
|
|
784
|
+
"version": "0.1.109",
|
|
785
|
+
"fingerprint": "Bxz7BwRq9TGRnnzDwYRYQo2pCh41b38SprItucnhY5Q="
|
|
786
786
|
}
|
package/API.md
CHANGED
|
@@ -269,6 +269,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
|
|
|
269
269
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.workflowBootstrapSteps">workflowBootstrapSteps</a></code> | <code>projen.github.workflows.JobStep[]</code> | Workflow steps to use in order to bootstrap this repo. |
|
|
270
270
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.workflowGitIdentity">workflowGitIdentity</a></code> | <code>projen.github.GitIdentity</code> | The git identity to use in workflows. |
|
|
271
271
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.workflowNodeVersion">workflowNodeVersion</a></code> | <code>string</code> | The node version to use in GitHub workflows. |
|
|
272
|
+
| <code><a href="#lerna-projen.LernaProjectOptions.property.workflowPackageCache">workflowPackageCache</a></code> | <code>boolean</code> | Enable Node.js package cache in GitHub workflows. |
|
|
272
273
|
| <code><a href="#lerna-projen.LernaProjectOptions.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. |
|
|
273
274
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.sinceLastRelease">sinceLastRelease</a></code> | <code>boolean</code> | (experimental) Flag to run tasks only for the packages that has changes since last release. |
|
|
274
275
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.taskCustomizations">taskCustomizations</a></code> | <code>{[ key: string ]: <a href="#lerna-projen.TaskCustomization">TaskCustomization</a>}</code> | Key value pair of task name and TaskCustomization to customize the lerna run step added to the task. |
|
|
@@ -1994,6 +1995,19 @@ The node version to use in GitHub workflows.
|
|
|
1994
1995
|
|
|
1995
1996
|
---
|
|
1996
1997
|
|
|
1998
|
+
##### `workflowPackageCache`<sup>Optional</sup> <a name="workflowPackageCache" id="lerna-projen.LernaProjectOptions.property.workflowPackageCache"></a>
|
|
1999
|
+
|
|
2000
|
+
```typescript
|
|
2001
|
+
public readonly workflowPackageCache: boolean;
|
|
2002
|
+
```
|
|
2003
|
+
|
|
2004
|
+
- *Type:* boolean
|
|
2005
|
+
- *Default:* false
|
|
2006
|
+
|
|
2007
|
+
Enable Node.js package cache in GitHub workflows.
|
|
2008
|
+
|
|
2009
|
+
---
|
|
2010
|
+
|
|
1997
2011
|
##### `independentMode`<sup>Optional</sup> <a name="independentMode" id="lerna-projen.LernaProjectOptions.property.independentMode"></a>
|
|
1998
2012
|
|
|
1999
2013
|
```typescript
|
|
@@ -2232,6 +2246,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
2232
2246
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowBootstrapSteps">workflowBootstrapSteps</a></code> | <code>projen.github.workflows.JobStep[]</code> | Workflow steps to use in order to bootstrap this repo. |
|
|
2233
2247
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowGitIdentity">workflowGitIdentity</a></code> | <code>projen.github.GitIdentity</code> | The git identity to use in workflows. |
|
|
2234
2248
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowNodeVersion">workflowNodeVersion</a></code> | <code>string</code> | The node version to use in GitHub workflows. |
|
|
2249
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowPackageCache">workflowPackageCache</a></code> | <code>boolean</code> | Enable Node.js package cache in GitHub workflows. |
|
|
2235
2250
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfig">disableTsconfig</a></code> | <code>boolean</code> | Do not generate a `tsconfig.json` file (used by jsii projects since tsconfig.json is generated by the jsii compiler). |
|
|
2236
2251
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfigDev">disableTsconfigDev</a></code> | <code>boolean</code> | Do not generate a `tsconfig.dev.json` file. |
|
|
2237
2252
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.docgen">docgen</a></code> | <code>boolean</code> | Docgen by Typedoc. |
|
|
@@ -3972,6 +3987,19 @@ The node version to use in GitHub workflows.
|
|
|
3972
3987
|
|
|
3973
3988
|
---
|
|
3974
3989
|
|
|
3990
|
+
##### `workflowPackageCache`<sup>Optional</sup> <a name="workflowPackageCache" id="lerna-projen.LernaTypescriptProjectOptions.property.workflowPackageCache"></a>
|
|
3991
|
+
|
|
3992
|
+
```typescript
|
|
3993
|
+
public readonly workflowPackageCache: boolean;
|
|
3994
|
+
```
|
|
3995
|
+
|
|
3996
|
+
- *Type:* boolean
|
|
3997
|
+
- *Default:* false
|
|
3998
|
+
|
|
3999
|
+
Enable Node.js package cache in GitHub workflows.
|
|
4000
|
+
|
|
4001
|
+
---
|
|
4002
|
+
|
|
3975
4003
|
##### `disableTsconfig`<sup>Optional</sup> <a name="disableTsconfig" id="lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfig"></a>
|
|
3976
4004
|
|
|
3977
4005
|
```typescript
|
package/lib/index.js
CHANGED
|
@@ -93,7 +93,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
_a = JSII_RTTI_SYMBOL_1;
|
|
96
|
-
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.
|
|
96
|
+
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.109" };
|
|
97
97
|
exports.LernaProject = LernaProject;
|
|
98
98
|
/**
|
|
99
99
|
* @pjid lerna-ts-project
|
|
@@ -138,7 +138,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
|
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
_b = JSII_RTTI_SYMBOL_1;
|
|
141
|
-
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.
|
|
141
|
+
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.109" };
|
|
142
142
|
exports.LernaTypescriptProject = LernaTypescriptProject;
|
|
143
143
|
class LernaProjectFactory {
|
|
144
144
|
constructor(project) {
|
package/package.json
CHANGED
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"jsii-docgen": "^7.2.9",
|
|
58
58
|
"jsii-pacmak": "^1.82.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.71.
|
|
60
|
+
"projen": "^0.71.81",
|
|
61
61
|
"standard-version": "^9",
|
|
62
62
|
"ts-jest": "^27",
|
|
63
63
|
"ts-node": "^10.9.1",
|
|
64
64
|
"typescript": "^4.9.5"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"projen": "^0.71.
|
|
67
|
+
"projen": "^0.71.81"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"commander": "^10.0.1",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
],
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
|
-
"version": "0.1.
|
|
85
|
+
"version": "0.1.109",
|
|
86
86
|
"jest": {
|
|
87
87
|
"testMatch": [
|
|
88
88
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|