Correct `grunt-bower-task` operation
- jQuery and jQuery-validation files were not being copied - update to match more-recent VS templates nit: simplify wwwroot/lib directory tree slightly
This commit is contained in:
parent
ffc72e58e8
commit
43fc844524
|
|
@ -84,7 +84,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/lib/jquery/js/jquery.js"></script>
|
<script src="/lib/jquery/jquery.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="/lib/jquery/js/jquery.js"></script>
|
<script src="/lib/jquery/jquery.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
@RenderBody()
|
@RenderBody()
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="~/lib/jquery/js/jquery.js"></script>
|
<script src="~/lib/jquery/jquery.js"></script>
|
||||||
@RenderSection("scripts", required: false)
|
@RenderSection("scripts", required: false)
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
@ -9,10 +9,10 @@
|
||||||
},
|
},
|
||||||
"exportsOverride": {
|
"exportsOverride": {
|
||||||
"jquery": {
|
"jquery": {
|
||||||
"js": "jquery.{js,min.js,min.map}"
|
"": "dist/jquery.{js,min.js,min.map}"
|
||||||
},
|
},
|
||||||
"jquery-validation": {
|
"jquery-validation": {
|
||||||
"": "jquery.validate.js"
|
"": "dist/jquery.validate.{js,min.js}"
|
||||||
},
|
},
|
||||||
"jquery-validation-unobtrusive": {
|
"jquery-validation-unobtrusive": {
|
||||||
"": "jquery.validate.unobtrusive.{js,min.js}"
|
"": "jquery.validate.unobtrusive.{js,min.js}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue