如何组织Web应用程序静态文件和文件夹结构?

时间:2013-07-19 02:18:35

标签: web directory structure

我正在使用bower.js提前保留jquerybootstrap版本,并使用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

这是否合适?

0 个答案:

没有答案