compass-aurora 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/aurora.rb +1 -1
- data/templates/shared/Gruntfile.js.erb +6 -2
- metadata +2 -2
data/lib/aurora.rb
CHANGED
|
@@ -43,7 +43,10 @@ module.exports = function (grunt) {
|
|
|
43
43
|
options: {
|
|
44
44
|
jshintrc: '.jshintrc'
|
|
45
45
|
},
|
|
46
|
-
all: [
|
|
46
|
+
all: [
|
|
47
|
+
'<%= project_js %>/{,**/}*.js',
|
|
48
|
+
'!<%= project_js %>/{,**/}*.min.js'
|
|
49
|
+
]
|
|
47
50
|
},
|
|
48
51
|
|
|
49
52
|
imagemin: {
|
|
@@ -104,7 +107,7 @@ module.exports = function (grunt) {
|
|
|
104
107
|
parallel: {
|
|
105
108
|
assets: {
|
|
106
109
|
grunt: true,
|
|
107
|
-
tasks: ['
|
|
110
|
+
tasks: ['imagemin', 'svgmin', 'uglify:dist']
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
});
|
|
@@ -127,6 +130,7 @@ module.exports = function (grunt) {
|
|
|
127
130
|
|
|
128
131
|
grunt.registerTask('build', [
|
|
129
132
|
'parallel:assets',
|
|
133
|
+
'compass:dist',
|
|
130
134
|
'jshint'
|
|
131
135
|
]);
|
|
132
136
|
};
|