我正在使用bower.js
提前保留jquery
和bootstrap
版本,并使用grunt.js
缩小和加入文件
但是像bootstrap
这样的第三个库同时包含js文件和css文件,我应该放置整个bootstrap
文件夹?我考虑过这样的结构:
project
|
|---build
| |--js // minify jquery.min.js + bootstrap.min.js + script.min.js
| |--css
|
|---src
| |--js //my own script.js file
| |--css //my own style.css file
|
|---bower_components
| |---jquery
| |---bootstrap
|
|---bower.json
|---Gruntfile.js
这是否合适?