Skip to content

Commit

Permalink
chore: upgrade cross-spawn dev dependency (#689)
Browse files Browse the repository at this point in the history
Fixes #662.

This did not upgrade automatically because the latest version of
`cdktf-cli` (which this package depends on for dev purposes) still [pins
to
7.3.0](https://github.com/hashicorp/terraform-cdk/blob/v0.20.10/packages/cdktf-cli/package.json#L52).

There is a pre-release of `cdktf-cli` which [already uses
7.0.6](https://github.com/hashicorp/terraform-cdk/blob/v0.21.0-pre.138/packages/cdktf-cli/package.json#L52)
so this resolution could be removed soon enough.

---------

Signed-off-by: epolon <epolon@amazon.com>
Signed-off-by: github-actions <github-actions@github.com>
Co-authored-by: github-actions <github-actions@github.com>
  • Loading branch information
iliapolo and github-actions authored Dec 9, 2024
1 parent 0373627 commit aa2dce0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 40 deletions.
4 changes: 4 additions & 0 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ releaseTask.exec(`npx projen ${integTask.name}`);
const releaseWorkflow = project.tryFindObjectFile('.github/workflows/release.yml');
releaseWorkflow!.addOverride('jobs.release.permissions.id-token', 'write');

project.package.addField('resolutions', {
'cross-spawn': '^7.0.6',
});

project.synth();

function jest(args: string) {
Expand Down
2 changes: 1 addition & 1 deletion package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 5 additions & 39 deletions yarn.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit aa2dce0

Please sign in to comment.