@epic-web/workshop-app 5.11.0 → 5.12.0

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.
@@ -6031,7 +6031,14 @@ async function getDiffFilesImpl(app1, app2) {
6031
6031
  const { app1CopyPath, app2CopyPath } = await prepareForDiff(app1, app2);
6032
6032
  const { stdout: diffOutput } = await execa(
6033
6033
  "git",
6034
- ["diff", "--no-index", "--ignore-blank-lines", app1CopyPath, app2CopyPath],
6034
+ [
6035
+ "diff",
6036
+ "--no-index",
6037
+ "--ignore-blank-lines",
6038
+ "--ignore-space-change",
6039
+ app1CopyPath,
6040
+ app2CopyPath
6041
+ ],
6035
6042
  { cwd: diffTmpDir }
6036
6043
  // --no-index implies --exit-code, so we need to use the error output
6037
6044
  ).catch((e) => e);
@@ -6100,7 +6107,8 @@ async function getDiffCodeImpl(app1, app2) {
6100
6107
  "--color=never",
6101
6108
  "--color-moved-ws=allow-indentation-change",
6102
6109
  "--no-prefix",
6103
- "--ignore-blank-lines"
6110
+ "--ignore-blank-lines",
6111
+ "--ignore-space-change"
6104
6112
  ],
6105
6113
  { cwd: diffTmpDir }
6106
6114
  // --no-index implies --exit-code, so we need to use the error output