Skip to content

Commit

Permalink
added brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
marklundin committed Mar 7, 2024
1 parent c9fef33 commit 5336065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/rollup-build-target.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function buildTarget(buildType, moduleFormat, input = 'src/index.js', buildDir =
plugins: outputPlugins[buildType || outputPlugins.release],
format: outputFormat[moduleFormat],
indent: '\t',
sourcemap: shouldBundle && sourceMap[buildType] || sourceMap.release,
sourcemap: shouldBundle && (sourceMap[buildType] || sourceMap.release),
name: 'pc',
preserveModules: !shouldBundle
};
Expand Down

0 comments on commit 5336065

Please sign in to comment.