-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
49 lines (48 loc) · 1.79 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"identifier": "imd.Less",
"organization": "zıəs uɐɟəʇs",
"name": "Less",
"description": "Automatically compile less files on save.",
"version": "1.0.5",
"categories": ["formatters"],
"repository": "https://github.com/seiz/novaless",
"bugs": "https://github.com/seiz/novaless/issues",
"main": "main.js",
"entitlements": {
"process": true
},
"configWorkspace":[
{
"key": "imd.Less.outputPath",
"title": "Output Path",
"type": "string",
"description": "Optionally specify a relative path to a directory wherein compiled .css files are saved.\",./\" is the project-directory.",
"placeholder": "./"
}
],
"config": [
{
"key": "imd.Less.cssStyle",
"title": "CSS Style",
"description": "Controls the output style of the resulting CSS.",
"type": "enum",
"values": ["Expanded", "Compressed"],
"default": "Expanded"
},
{
"key": "imd.Less.sourceMap",
"title": "Generate Source Map",
"description": "Source maps are files that tell browsers or other tools that consume CSS how that CSS corresponds to the Less files from which it was generated. They make it possible to see and even edit your Sass files in browsers.",
"type": "enum",
"values": ["External", "Embedded", "None"],
"default": "None"
},
{
"key": "imd.Less.execPath",
"title": "Executable Path",
"type": "path",
"description": "Manually set the path for the lessc executable.",
"placeholder": "/usr/local/bin/lessc"
}
]
}