-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
42 lines (40 loc) · 1.29 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
{
"identifier": "com.atec-systems.cssminify",
"name": "CSSminify",
"organization": "atec-systems",
"description": "Automatically minify CSS files on save.",
"version": "1.0.1",
"categories": ["formatters"],
"repository": "https://github.com/docjojo/CSSminify.novaextension",
"bugs": "https://github.com/docjojo/CSSminify.novaextension/issues",
"main": "main.js",
"entitlements": {
"process": true
},
"commands": {
"editor": [
{
"title": "Minify CSS",
"command": "CCSminify.minifyFile",
"when": "editorSyntax == 'css'"
}
]
},
"config": [
{
"key": "atec-systems.CCSminify.minifyOnSave",
"title": "Minify on Save",
"description": "Automatically minify css files on save.",
"type": "enum",
"values": ["Yes", "No"],
"default": "Yes"
},
{
"key": "atec-systems.CCSminify.execPath",
"title": "Executable Path",
"type": "path",
"description": "Manually set the path for the sass executable.",
"placeholder": "/usr/local/bin/"
}
]
}