Skip to content

Commit

Permalink
[Fixes #79] Webpack build with version 3.2.8 is failing
Browse files Browse the repository at this point in the history
  • Loading branch information
kichalla committed Mar 27, 2018
1 parent 54f75c6 commit a91f540
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.msbuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<VersionFile Include="version.props"/>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.validate.unobtrusive.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define("jquery.validate.unobtrusive", ['jquery.validate'], factory);
define("jquery.validate.unobtrusive", ['jquery.validation'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports
module.exports = factory(require('jquery-validation'));
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.validate.unobtrusive.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/jquery.validate.unobtrusive.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define("jquery.validate.unobtrusive", ['jquery.validate'], factory);
define("jquery.validate.unobtrusive", ['jquery.validation'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports
module.exports = factory(require('jquery-validation'));
Expand Down

0 comments on commit a91f540

Please sign in to comment.