From 8056e38aae564644f283554318de3334c5a95252 Mon Sep 17 00:00:00 2001 From: Cory Hall <43035978+corymhall@users.noreply.github.com> Date: Wed, 28 Jun 2023 14:14:32 -0400 Subject: [PATCH] chore(integ-runner): add fsevents to optionalDependencies (#26151) This matches the behavior of [aws-cdk](https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk/package.json#L31-L35) When `integ-runner` is installed on a mac, `fsevents` will be installed as well. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/integ-runner/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/@aws-cdk/integ-runner/package.json b/packages/@aws-cdk/integ-runner/package.json index e813abd0fe939..4112e216760f4 100644 --- a/packages/@aws-cdk/integ-runner/package.json +++ b/packages/@aws-cdk/integ-runner/package.json @@ -29,6 +29,9 @@ "lib/workers/extract/index.js" ], "externals": { + "optionalDependencies": [ + "fsevents" + ], "dependencies": [ "aws-cdk" ]