mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- fix test: compiler plugin caching - less
This commit is contained in:
@@ -3269,13 +3269,17 @@ async function bundle({
|
||||
buildMode: buildOptions.buildMode
|
||||
});
|
||||
|
||||
await client.make({
|
||||
packages: [app],
|
||||
minifyMode: minifyMode,
|
||||
minifiers: options.minifiers || [],
|
||||
addCacheBusters: true,
|
||||
onJsOutputFiles
|
||||
});
|
||||
try {
|
||||
await client.make({
|
||||
packages: [app],
|
||||
minifyMode: minifyMode,
|
||||
minifiers: options.minifiers || [],
|
||||
addCacheBusters: true,
|
||||
onJsOutputFiles,
|
||||
});
|
||||
} catch (e) {
|
||||
// it's fine to fail here, but we don't want to propagate the error
|
||||
}
|
||||
|
||||
return client;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user