Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mmason2-godaddy committed Sep 25, 2024
1 parent 300c567 commit 17e6307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gasket-core/lib/gasket.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class Gasket {
// prune nullish and/or empty plugins
config.plugins = config.plugins
.filter(Boolean)
.map(plugin => plugin.default || plugin) // quality for cjs apps
.map(plugin => plugin.default || plugin) // quality of life for cjs apps
.filter(plugin => Boolean(plugin.name) || Boolean(plugin.hooks));

// start the engine
Expand Down

0 comments on commit 17e6307

Please sign in to comment.