|
|
@@ -46,10 +46,11 @@ module.exports = (grunt) ->
|
|
|
'src/stylesheets/lungo.widget.*.styl',
|
|
|
'src/stylesheets/lungo.media.*.styl']
|
|
|
theme: [
|
|
|
- 'src/stylesheets/theme/*.styl']
|
|
|
+ 'src/stylesheets/theme/theme.*.styl']
|
|
|
+ theme_firefoxos: [
|
|
|
+ 'src/stylesheets/theme/firefoxos/theme.*.styl']
|
|
|
icons: [
|
|
|
'src/stylesheets/lungo.icon**.styl']
|
|
|
-
|
|
|
calendar:
|
|
|
coffee: 'src/plugins/calendar/**.coffee'
|
|
|
stylus: 'src/plugins/calendar/**.styl'
|
|
|
@@ -68,8 +69,11 @@ module.exports = (grunt) ->
|
|
|
options: compress: true, import: [ '__init']
|
|
|
files: '<%=meta.endpoint%>/<%=meta.file%><%=meta.version%>/<%=meta.file%>.css': '<%=source.stylus%>'
|
|
|
theme:
|
|
|
- options: compress: false
|
|
|
+ options: compress: false, import: [ '__init']
|
|
|
files: '<%=meta.endpoint%>/<%=meta.file%><%=meta.version%>/<%=meta.file%>.theme.css': '<%=source.theme%>'
|
|
|
+ theme_firefoxos:
|
|
|
+ options: compress: true, import: [ '__init']
|
|
|
+ files: '<%=meta.packages%>/<%=meta.file%>.firefoxos/<%=meta.file%>.firefoxos.theme.css': '<%=source.theme_firefoxos%>'
|
|
|
icons:
|
|
|
files: '<%=meta.packages%>/<%=meta.file%>.icon/<%=meta.file%>.icon.css': '<%=source.icons%>'
|
|
|
calendar:
|
|
|
@@ -89,6 +93,9 @@ module.exports = (grunt) ->
|
|
|
theme:
|
|
|
files: ['<%= source.theme %>']
|
|
|
tasks: ["stylus:theme"]
|
|
|
+ theme_firefoxos:
|
|
|
+ files: ['<%= source.theme_firefoxos %>']
|
|
|
+ tasks: ["stylus:theme_firefoxos"]
|
|
|
|
|
|
calendar:
|
|
|
files: ['<%= source.calendar.coffee %>','<%= source.calendar.stylus %>']
|