Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. module.exports = function(grunt) {
  2.  
  3. var cssPath = 'public/wp-content/themes/ggs-rcw/css';
  4. var sassPath = 'public/wp-content/themes/ggs-rcw/resources/scss';
  5.  
  6. var jsPath = 'public/wp-content/themes/ggs-rcw/js';
  7.  
  8. var css = function (file) {
  9. return cssPath + "/" + file;
  10. };
  11.  
  12. var scss = function (file) {
  13. return sassPath + "/" + file;
  14. };
  15.  
  16. var js = function (file) {
  17. return jsonPath + "/" + file;
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement