Зависимости "doT" нет в списке deps - PullRequest
0 голосов
/ 03 декабря 2018

Я пытаюсь включить jQuery-QueryBuilder в свой проект с помощью Bower. Я ввел

bower install --save jQuery-QueryBuilder

Какиеустановил пакет, но когда я запускаю brunch watch, я получаю эту ошибку:

/home/sgarant/Project/node_modules/read-components/index.js:232
        throw new Error('Dependency "' + depName + '" is not present in the list of deps [' + names + ']. Specify correct dependency in ' + type + '.json or contact package author.');
        ^

Error: Dependency "doT" is not present in the list of deps [angular, angular-route, angular-resource, jquery, rickshaw, d3, angular-ui-grid, angular-translate, angular-translate-loader-static-files, js-quantities, angular-filter, underscore, angular-loading-bar, angular-spinkit, PACE, moment, jquery-extendext, dot, jQuery-QueryBuilder, bootstrap, dot]. Specify correct dependency in bower.json or contact package author.
  at /home/sgarant/Project/node_modules/read-components/index.js:232:15
  at Array.forEach (native)
  at setLevel (/home/sgarant/Project/node_modules/read-components/index.js:212:10)
  at Array.forEach (native)
  at setSortingLevels (/home/sgarant/Project/node_modules/read-components/index.js:237:12)
  at sortPackages (/home/sgarant/Project/node_modules/read-components/index.js:243:10)
  at /home/sgarant/Project/node_modules/read-components/index.js:274:20
  at /home/sgarant/Project/node_modules/read-components/index.js:186:9
  at /home/sgarant/Project/node_modules/async-each/index.js:24:44
  at /home/sgarant/Project/node_modules/read-components/index.js:140:7
  at /home/sgarant/Project/node_modules/read-components/index.js:87:7
  at FSReqWrap.readFileAfterClose [as oncomplete] (fs.js:447:3)

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! Project@1.6.0-SNAPSHOT start: `brunch watch`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the Project@1.6.0-SNAPSHOT start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/sgarant/.npm/_logs/2018-12-03T14_30_13_543Z-debug.log

Дело в том, что я должен установить его через Bower, так как я использую Brunch для сборки проекта.

Я пытался установить толькозависимости, загрузите библиотеку, соберите ее и поместите содержимое папки dist / в папку vendor /, чтобы brunch мог скомпилировать ее, но затем я получаю эту ошибку $(...).queryBuilder is not a function.

Спасибо за вашу помощь

...