How can i ignore some file to build projection.js

i run this link in comman line : js steal/buildjs music/js/music.js
it show some line :

  • stealconfig.js
  • music/js/music.js
  • bootstrap/bootstrap.css
  • font-awesome.css
  • style.css
  • can/view/ejs/ejs.js
  • can/util/jquery/jquery.js
  • can/util/can.js
  • can/util/array/each.js
  • can/view/view.js
  • can/util/string/string.js
  • can/observe/compute/compute.js
  • can/util/bind/bind.js
  • can/view/scanner.js
  • can/view/elements.js
  • can/view/render.js
  • can/view/live.js
  • can/view/node_lists.js
  • model.js
  • music/controller/NavigationController.js
  • music/controller/RouterController.js
  • music/controller/HomeController.js
  • music/controller/ListMusicController.js
  • music/controller/UpdateMusicController.js
  • music/model/model.js

Now, i want ignore links, and my production has my custome file :

  • model.js
  • music/controller/NavigationController.js
  • music/controller/RouterController.js
  • music/controller/HomeController.js
  • music/controller/ListMusicController.js
  • music/controller/UpdateMusicController.js
  • music/model/model.js

What can i do now in stealJs.config file?

which files would you ignore?
if these files are shown in the log, there is some dependency to this files… so this is a bad idea to remove dependencies

hi @pYr0x , if i remove dependencies , it’s still running.

you can use http://stealjs.com/docs/steal-tools.BuildOptions.html -> ignore
here is a example http://stealjs.com/docs/load.metadata.html -> bundle=false

bundle=false and ignore are the same. examples can you find here: https://github.com/stealjs/steal-tools/blob/master/test/multibuild_test.js#L1690

an other way is to use sideBundle http://stealjs.com/docs/load.metadata.html