2

When retrieving the dojo-util package from bower, the package is installed in a directory dojo-util/.., but when running the command line to create a custom build, it complains that the main.js file could not be found.

The file the compiler search for should be located in /util/build/main.js, but when installing with bower the dirname is /dojo-util/build/main.js.

Someone already had this problem ?

kitensei
  • 2,510
  • 2
  • 42
  • 68

1 Answers1

3

You can resolve this by instructing bower to install dojo-util as util:

bower install util=dojo-util#<version>

Or in bower.json's dependencies:

"util": "dojo-util#<version>"
Ken Franqueiro
  • 10,559
  • 2
  • 23
  • 40