Skip to content

Conversation

@mildaniel
Copy link
Contributor

Description of changes:
npm 9.x no longer packs the npm-shrinkwrap.json so we need to do it ourselves to respect this file during installation, similarly to how to copy over the package-lock.json.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

Comment on lines 116 to 123
[False, False, False],
[True, False, False],
[False, True, False],
[True, True, False],
[False, False, True],
[True, False, True],
[False, True, True],
[True, True, True],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: if this is all the combination of these 3 params, we can also write it like this;

@parameterized.expand(
  itertools.product([True, False], [True, False], [True, False])
)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh cool, let me try that, thanks!

@mildaniel mildaniel merged commit 77e3d23 into aws:develop Nov 28, 2022
@mildaniel mildaniel deleted the fix-npm-shrinkwrap-copying branch November 28, 2022 23:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants