projalf 0.0.27 → 0.0.28
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 +2 -2
- package/API.md +19 -5
- package/package.json +6 -6
package/.jsii
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
]
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"projen": "^0.
|
|
10
|
+
"projen": "^0.96.1"
|
|
11
11
|
},
|
|
12
12
|
"dependencyClosure": {
|
|
13
13
|
"constructs": {
|
|
@@ -158,5 +158,5 @@
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
"version": "0.0.0",
|
|
161
|
-
"fingerprint": "
|
|
161
|
+
"fingerprint": "kEYqln986ktkDZz/OZBLA3xHjPBm49gXZ/zEwmZKOs0="
|
|
162
162
|
}
|
package/API.md
CHANGED
|
@@ -1670,6 +1670,7 @@ const projalfOptions: ProjalfOptions = { ... }
|
|
|
1670
1670
|
| <code><a href="#projalf.ProjalfOptions.property.npmRegistry">npmRegistry</a></code> | <code>string</code> | The host name of the npm registry to publish to. |
|
|
1671
1671
|
| <code><a href="#projalf.ProjalfOptions.property.npmRegistryUrl">npmRegistryUrl</a></code> | <code>string</code> | The base URL of the npm package registry. |
|
|
1672
1672
|
| <code><a href="#projalf.ProjalfOptions.property.npmTokenSecret">npmTokenSecret</a></code> | <code>string</code> | GitHub secret which contains the NPM token to use when publishing packages. |
|
|
1673
|
+
| <code><a href="#projalf.ProjalfOptions.property.npmTrustedPublishing">npmTrustedPublishing</a></code> | <code>boolean</code> | Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. |
|
|
1673
1674
|
| <code><a href="#projalf.ProjalfOptions.property.packageManager">packageManager</a></code> | <code>projen.javascript.NodePackageManager</code> | The Node Package Manager used to execute scripts. |
|
|
1674
1675
|
| <code><a href="#projalf.ProjalfOptions.property.packageName">packageName</a></code> | <code>string</code> | The "name" in package.json. |
|
|
1675
1676
|
| <code><a href="#projalf.ProjalfOptions.property.peerDependencyOptions">peerDependencyOptions</a></code> | <code>projen.javascript.PeerDependencyOptions</code> | Options for `peerDeps`. |
|
|
@@ -1716,8 +1717,8 @@ const projalfOptions: ProjalfOptions = { ... }
|
|
|
1716
1717
|
| <code><a href="#projalf.ProjalfOptions.property.buildWorkflowTriggers">buildWorkflowTriggers</a></code> | <code>projen.github.workflows.Triggers</code> | Build workflow triggers. |
|
|
1717
1718
|
| <code><a href="#projalf.ProjalfOptions.property.bundlerOptions">bundlerOptions</a></code> | <code>projen.javascript.BundlerOptions</code> | Options for `Bundler`. |
|
|
1718
1719
|
| <code><a href="#projalf.ProjalfOptions.property.checkLicenses">checkLicenses</a></code> | <code>projen.javascript.LicenseCheckerOptions</code> | Configure which licenses should be deemed acceptable for use by dependencies. |
|
|
1719
|
-
| <code><a href="#projalf.ProjalfOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@
|
|
1720
|
-
| <code><a href="#projalf.ProjalfOptions.property.codeCovTokenSecret">codeCovTokenSecret</a></code> | <code>string</code> | Define the secret name for a specified https://codecov.io/ token
|
|
1720
|
+
| <code><a href="#projalf.ProjalfOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via `codeCovTokenSecret`. |
|
|
1721
|
+
| <code><a href="#projalf.ProjalfOptions.property.codeCovTokenSecret">codeCovTokenSecret</a></code> | <code>string</code> | Define the secret name for a specified https://codecov.io/ token. |
|
|
1721
1722
|
| <code><a href="#projalf.ProjalfOptions.property.copyrightOwner">copyrightOwner</a></code> | <code>string</code> | License copyright owner. |
|
|
1722
1723
|
| <code><a href="#projalf.ProjalfOptions.property.copyrightPeriod">copyrightPeriod</a></code> | <code>string</code> | The copyright years to put in the LICENSE file. |
|
|
1723
1724
|
| <code><a href="#projalf.ProjalfOptions.property.dependabot">dependabot</a></code> | <code>boolean</code> | Use dependabot to handle dependency upgrades. |
|
|
@@ -2635,6 +2636,19 @@ GitHub secret which contains the NPM token to use when publishing packages.
|
|
|
2635
2636
|
|
|
2636
2637
|
---
|
|
2637
2638
|
|
|
2639
|
+
##### `npmTrustedPublishing`<sup>Optional</sup> <a name="npmTrustedPublishing" id="projalf.ProjalfOptions.property.npmTrustedPublishing"></a>
|
|
2640
|
+
|
|
2641
|
+
```typescript
|
|
2642
|
+
public readonly npmTrustedPublishing: boolean;
|
|
2643
|
+
```
|
|
2644
|
+
|
|
2645
|
+
- *Type:* boolean
|
|
2646
|
+
- *Default:* false
|
|
2647
|
+
|
|
2648
|
+
Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
2649
|
+
|
|
2650
|
+
---
|
|
2651
|
+
|
|
2638
2652
|
##### `packageManager`<sup>Optional</sup> <a name="packageManager" id="projalf.ProjalfOptions.property.packageManager"></a>
|
|
2639
2653
|
|
|
2640
2654
|
```typescript
|
|
@@ -3323,7 +3337,7 @@ public readonly codeCov: boolean;
|
|
|
3323
3337
|
- *Type:* boolean
|
|
3324
3338
|
- *Default:* false
|
|
3325
3339
|
|
|
3326
|
-
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@
|
|
3340
|
+
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via `codeCovTokenSecret`.
|
|
3327
3341
|
|
|
3328
3342
|
---
|
|
3329
3343
|
|
|
@@ -3334,9 +3348,9 @@ public readonly codeCovTokenSecret: string;
|
|
|
3334
3348
|
```
|
|
3335
3349
|
|
|
3336
3350
|
- *Type:* string
|
|
3337
|
-
- *Default:*
|
|
3351
|
+
- *Default:* OIDC auth is used
|
|
3338
3352
|
|
|
3339
|
-
Define the secret name for a specified https://codecov.io/ token
|
|
3353
|
+
Define the secret name for a specified https://codecov.io/ token.
|
|
3340
3354
|
|
|
3341
3355
|
---
|
|
3342
3356
|
|
package/package.json
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@stylistic/eslint-plugin": "^2",
|
|
39
39
|
"@types/jest": "^30.0.0",
|
|
40
|
-
"@types/node": "^
|
|
40
|
+
"@types/node": "^12",
|
|
41
41
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
42
42
|
"@typescript-eslint/parser": "^8",
|
|
43
43
|
"commit-and-tag-version": "^12",
|
|
@@ -50,22 +50,22 @@
|
|
|
50
50
|
"jsii": "~5.8.0",
|
|
51
51
|
"jsii-diff": "^1.113.0",
|
|
52
52
|
"jsii-docgen": "^10.5.0",
|
|
53
|
-
"jsii-pacmak": "^1.
|
|
53
|
+
"jsii-pacmak": "^1.114.1",
|
|
54
54
|
"jsii-rosetta": "~5.8.0",
|
|
55
|
-
"projen": "^0.
|
|
55
|
+
"projen": "^0.96.1",
|
|
56
56
|
"ts-jest": "^29.4.1",
|
|
57
|
-
"ts-node": "^
|
|
57
|
+
"ts-node": "^9",
|
|
58
58
|
"typescript": "^5.9.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"projen": "^0.
|
|
61
|
+
"projen": "^0.96.1"
|
|
62
62
|
},
|
|
63
63
|
"main": "lib/index.js",
|
|
64
64
|
"license": "Apache-2.0",
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"version": "0.0.
|
|
68
|
+
"version": "0.0.28",
|
|
69
69
|
"jest": {
|
|
70
70
|
"coverageProvider": "v8",
|
|
71
71
|
"testMatch": [
|