install jquery-typeahead

This commit is contained in:
Uwe Steinmann 2021-11-27 12:44:00 +01:00
parent 539b026d5e
commit a5c60677ab
2 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module.exports = function (grunt) { module.exports = function (grunt) {
'use strict'; 'use strict';
var bootstrapDir = 'views/bootstrap4/vendors', var bootstrapDir = 'views/bootstrap/vendors',
tdkDir = 'views/tdk/vendors', tdkDir = 'views/tdk/vendors',
nodeDir = 'node_modules'; nodeDir = 'node_modules';
@ -106,6 +106,13 @@ module.exports = function (grunt) {
], ],
dest: bootstrapDir + '/jquery-validation', dest: bootstrapDir + '/jquery-validation',
flatten: true flatten: true
},{
expand: true,
src: [
nodeDir + '/jquery-typeahead/dist/*'
],
dest: bootstrapDir + '/jquery-typeahead',
flatten: true
},{ },{
expand: true, expand: true,
src: [ src: [

View File

@ -26,6 +26,7 @@
"grunt-contrib-copy": "^1.0.0", "grunt-contrib-copy": "^1.0.0",
"jqtree": "^1.5.1", "jqtree": "^1.5.1",
"jquery": "^1.12.4", "jquery": "^1.12.4",
"jquery-typeahead": "^2.11.1",
"jquery-validation": "^1.19.2", "jquery-validation": "^1.19.2",
"moment": "^2.29.1", "moment": "^2.29.1",
"noty": "^2.4.1", "noty": "^2.4.1",