File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ # мейк файл для основных действий
2
+
3
+ all :
4
+ php cron/start.php css/gen
5
+ php cron/start.php js/gen
6
+ - compass compile -e production --force
7
+ # - compass compile --output-style compressed --force
8
+
9
+ daemon :
10
+ - compass watch
11
+
12
+ clean : compass_clean
13
+ php cron/start.php css/clean
14
+ php cron/start.php js/clean
15
+
16
+ compass_clean :
17
+ - find application/_common/css -name ' *.s[ac]ss' | sed ' s/application\/_common/www/' | sed ' s/\.s[ac]ss/\.css/' | xargs -I' {}' rm {}
18
+
19
+ .PHONY :
20
+ clean compass_clean
Original file line number Diff line number Diff line change 7
7
javascripts_dir = "www/js"
8
8
# To enable relative paths to assets via compass helper functions. Uncomment:
9
9
# relative_assets = true
10
+
11
+ sass_options = { :cache => false }
12
+
You can’t perform that action at this time.
0 commit comments