我从其他人那里继承了Django
网站,我试图将Grunt.js
与其一起使用。我的app目录结构如下:
app_name
|__ pages
|__ settings
|__ static
|__ config.rb
|__ css
|__ Gruntfile.js
|__ img
|__ js
|__ node_modules
|__ package.json
|__ sass
|__ templates
|__ etc
我应该在Grunt
目录中使用static
吗? - 即最佳做法是在文件夹的根目录中使用Grunt
(在这种情况下是app_name
旁边)?
当我将css/scripts
上传到制作时,我不希望Gruntfile.js
可见。
答案 0 :(得分:2)
您可以将Gruntfile和node_modules从上层文件夹符号链接到当前,这样grunt构建将运行良好,您不会将cfg文件存储在静态文件夹中。其他方法是使用deb或rpm等包装系统将其排除。