Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
// Sass project settings, you can edit it and set custom settings.
2
{
3
        // The mappings of source directory and output directory
4
        "mappings": [
5
            {    
6
              "src": "admin/layout/",
7
              "dest": "../assets/admin/layout/css/"
8
            },
9
            {
10
              "src": "admin/layout2/",
11
              "dest": "../assets/admin/layout2/css/"
12
            },
13
            {
14
              "src": "admin/layout3/",
15
              "dest": "../assets/admin/layout3/css/"
16
            },
17
            {
18
              "src": "admin/layout4/",
19
              "dest": "../assets/admin/layout4/css/"
20
            },
21
            {
22
              "src": "admin/pages/",
23
              "dest": "../assets/admin/pages/css"
24
            },
25
            {
26
              "src": "global/",
27
              "dest": "../assets/global/css"
28
            }
29
        ],
30
 
31
        // Add the ignore rules that Koala will not search them.
32
        // e.g. ["*.json", "*.txt", "test", "path/libs"]
33
        "ignores": ["*.css"],
34
 
35
        // Compile options of Sass.
36
        "options": {
37
 
38
                // Output style. Can be nested (default), compact, compressed, or expanded.
39
                "outputStyle": "expanded",
40
 
41
                // Emit comments in the generated CSS indicating the corresponding source line.
42
                "lineComments": false,
43
 
44
                // Emit extra information in the generated CSS that can be used by the FireSass Firebug plugin.
45
                "debugInfo": false,
46
 
47
                // Create sourcemap files next to the generated CSS files
48
                "sourceMap": false,
49
 
50
                // Use Unix-style newlines in written files.
51
                "unixNewlines": false
52
        },
53
 
54
        // Other compile options, use the full name of options.
55
        // e.g, ["--scss", ... ,"--no-cache"].
56
        // Run the command 'sass -h' to see more options.
57
        "customOptions": [],
58
 
59
        // An array of filesystem paths or importers which should be searched for Sass templates imported with the @import directive.
60
        "includePaths": [],
61
 
62
        // A array of ruby libraries, require them before running Sass.
63
        "requireLibs": []
64
}