deployable-awscdk-app-ts 0.1.880 → 0.1.882
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 +4 -3
- package/API.md +29 -0
- package/lib/index.js +1 -1
- package/lib/steps.js +1 -1
- package/package.json +4 -4
package/.jsii
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"constructs": "^10.8.1",
|
|
14
|
-
"projen": "^0.101.
|
|
14
|
+
"projen": "^0.101.29"
|
|
15
15
|
},
|
|
16
16
|
"dependencyClosure": {
|
|
17
17
|
"constructs": {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"projen.cdk": {},
|
|
47
47
|
"projen.cdk8s": {},
|
|
48
48
|
"projen.cdktf": {},
|
|
49
|
+
"projen.cdktn": {},
|
|
49
50
|
"projen.circleci": {},
|
|
50
51
|
"projen.github": {},
|
|
51
52
|
"projen.github.workflows": {},
|
|
@@ -2048,6 +2049,6 @@
|
|
|
2048
2049
|
"symbolId": "src/types:EnvironmentOptions"
|
|
2049
2050
|
}
|
|
2050
2051
|
},
|
|
2051
|
-
"version": "0.1.
|
|
2052
|
-
"fingerprint": "
|
|
2052
|
+
"version": "0.1.882",
|
|
2053
|
+
"fingerprint": "deNbjSYL/ldUZryt/gUWxDijw8ua+/5AJJcAEgGNAho="
|
|
2053
2054
|
}
|
package/API.md
CHANGED
|
@@ -1776,6 +1776,7 @@ const deployableAwsCdkTypeScriptAppOptions: DeployableAwsCdkTypeScriptAppOptions
|
|
|
1776
1776
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.bundledDeps">bundledDeps</a></code> | <code>string[]</code> | List of dependencies to bundle into this module. |
|
|
1777
1777
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.bunVersion">bunVersion</a></code> | <code>string</code> | The version of Bun to use if using Bun as a package manager. |
|
|
1778
1778
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.codeArtifactOptions">codeArtifactOptions</a></code> | <code>projen.javascript.CodeArtifactOptions</code> | Options for npm packages using AWS CodeArtifact. |
|
|
1779
|
+
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.dedupeDeps">dedupeDeps</a></code> | <code>boolean</code> | Add a `dedupe` task that deduplicates project dependencies. |
|
|
1779
1780
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.deleteOrphanedLockFiles">deleteOrphanedLockFiles</a></code> | <code>boolean</code> | Automatically delete lockfiles from package managers that are not the active one. |
|
|
1780
1781
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.deps">deps</a></code> | <code>string[]</code> | Runtime dependencies of this module. |
|
|
1781
1782
|
| <code><a href="#deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.description">description</a></code> | <code>string</code> | The description is just a string that helps people understand the purpose of the package. |
|
|
@@ -2496,6 +2497,34 @@ This is required if publishing packages to, or installing scoped packages from A
|
|
|
2496
2497
|
|
|
2497
2498
|
---
|
|
2498
2499
|
|
|
2500
|
+
##### `dedupeDeps`<sup>Optional</sup> <a name="dedupeDeps" id="deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.dedupeDeps"></a>
|
|
2501
|
+
|
|
2502
|
+
```typescript
|
|
2503
|
+
public readonly dedupeDeps: boolean;
|
|
2504
|
+
```
|
|
2505
|
+
|
|
2506
|
+
- *Type:* boolean
|
|
2507
|
+
- *Default:* false, unless `yarnBerryOptions.dedupePackages` is set
|
|
2508
|
+
|
|
2509
|
+
Add a `dedupe` task that deduplicates project dependencies.
|
|
2510
|
+
|
|
2511
|
+
Deduplication prevents multiple versions of the same package from being
|
|
2512
|
+
installed, if a single version can satisfy all requested version ranges.
|
|
2513
|
+
This prevents version proliferation and reduces the size of the dependency
|
|
2514
|
+
tree.
|
|
2515
|
+
|
|
2516
|
+
The behavior depends on the package manager:
|
|
2517
|
+
- npm: runs `npm dedupe` after every mutating install.
|
|
2518
|
+
- pnpm: runs `pnpm dedupe` after every mutating install.
|
|
2519
|
+
- Yarn Berry: runs `yarn dedupe` after every mutating install. If
|
|
2520
|
+
`yarnBerryOptions.dedupePackages` is set, only the listed packages are
|
|
2521
|
+
deduplicated.
|
|
2522
|
+
- Yarn Classic: `yarn install` already deduplicates, so the task only
|
|
2523
|
+
prints an informational message.
|
|
2524
|
+
- Bun: not supported, enabling this option throws an error.
|
|
2525
|
+
|
|
2526
|
+
---
|
|
2527
|
+
|
|
2499
2528
|
##### `deleteOrphanedLockFiles`<sup>Optional</sup> <a name="deleteOrphanedLockFiles" id="deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppOptions.property.deleteOrphanedLockFiles"></a>
|
|
2500
2529
|
|
|
2501
2530
|
```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.
|
|
50
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptApp", version: "0.1.882" };
|
|
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.
|
|
22
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "deployable-awscdk-app-ts.DeployableAwsCdkTypeScriptAppStepsFactory", version: "0.1.882" };
|
|
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.139.0",
|
|
33
33
|
"jsii-rosetta": "5.9.x",
|
|
34
|
-
"projen": "^0.101.
|
|
34
|
+
"projen": "^0.101.29",
|
|
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.101.
|
|
42
|
+
"projen": "^0.101.29"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"projen": "^0.101.
|
|
45
|
+
"projen": "^0.101.29",
|
|
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.
|
|
73
|
+
"version": "0.1.882",
|
|
74
74
|
"jest": {
|
|
75
75
|
"coverageProvider": "v8",
|
|
76
76
|
"testMatch": [
|