Changeset 11690
- Timestamp:
- 09/08/2017 10:04:56 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r11587 r11690 24 24 // SASS generated "Twenty*"" CSS files 25 25 BP_SCSS_CSS_FILES = [ 26 '!bp-templates/bp-legacy/css/twenty*.css' 26 '!bp-templates/bp-legacy/css/twenty*.css', 27 '!bp-templates/bp-nouveau/css/buddypress.css' 27 28 ], 28 29 … … 85 86 }, 86 87 sass: { 88 options: { 89 outputStyle: 'expanded', 90 indentType: 'tab', 91 indentWidth: '1' 92 }, 87 93 styles: { 88 94 cwd: SOURCE_DIR, … … 92 98 flatten: true, 93 99 src: ['bp-templates/bp-legacy/css/*.scss'], 94 dest: SOURCE_DIR + 'bp-templates/bp-legacy/css/', 95 options: { 96 outputStyle: 'expanded', 97 indentType: 'tab', 98 indentWidth: '1' 99 } 100 dest: SOURCE_DIR + 'bp-templates/bp-legacy/css/' 101 }, 102 nouveau: { 103 cwd: SOURCE_DIR, 104 extDot: 'last', 105 expand: true, 106 ext: '.css', 107 flatten: true, 108 src: ['bp-templates/bp-nouveau/sass/buddypress.scss'], 109 dest: SOURCE_DIR + 'bp-templates/bp-nouveau/css/' 100 110 } 101 111 },
Note: See TracChangeset
for help on using the changeset viewer.