Update eslint-plugin-mozilla to avoid having to force-install packages (issue 15429)

The latest version of `eslint-plugin-mozilla` removed the Prettier dependency, see https://bugzilla.mozilla.org/show_bug.cgi?id=1677562, which means that we no longer need to use `npm install --force` in the PDF.js library.
This commit is contained in:
Jonas Jenwald 2023-04-20 16:09:13 +02:00
parent d4e8657e8f
commit 19526d2322
3 changed files with 22 additions and 22 deletions

View file

@ -2345,7 +2345,7 @@ gulp.task(
opts.cwd = installPath;
distPath = path.relative(installPath, distPath);
}
safeSpawnSync("npm", ["install", "--force", distPath], opts);
safeSpawnSync("npm", ["install", distPath], opts);
done();
})
);