Skip to content

Commit

Permalink
fix(output): Add hashDigestLength (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanglasmeyer authored and Kent C. Dodds committed Apr 8, 2016
1 parent a6cda17 commit 4702d9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/properties/output/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default Joi.object({
devtoolModuleFilenameTemplate: [notAbsolutePath, Joi.func()],
devtoolFallbackModuleFilenameTemplate: [notAbsolutePath, Joi.func()],
devtoolLineToLine: Joi.any(),
hashDigestLength: Joi.number(),
hotUpdateChunkFilename: notAbsolutePath,
hotUpdateMainFilename: notAbsolutePath,
jsonpFunction: Joi.string(),
Expand Down
2 changes: 2 additions & 0 deletions src/properties/output/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ const validModuleConfigs = [
{ crossOriginLoading: false },
// #16
{ crossOriginLoading: 'anonymous' },
// #17
{ hashDigestLength: 6 }, // undocumented

]

Expand Down

0 comments on commit 4702d9d

Please sign in to comment.