Skip to content

Commit

Permalink
Use safePackageName to name file (#39)
Browse files Browse the repository at this point in the history
Use safePackageName to name file
  • Loading branch information
jaredpalmer authored Apr 29, 2019
2 parents 7247692 + e0566a3 commit 0ffac4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/createRollupConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function createRollupConfig(format, env, opts) {
// Establish Rollup output
output: {
// Set filenames of the consumer's package
file: `${paths.appDist}/${safeVariableName(
file: `${paths.appDist}/${safePackageName(
opts.name
)}.${format}.${env}.js`,
// Pass through the file format
Expand Down

0 comments on commit 0ffac4f

Please sign in to comment.