-
Notifications
You must be signed in to change notification settings - Fork 115
/
manifest.json
54 lines (49 loc) · 1021 Bytes
/
manifest.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
50
51
52
53
54
{
"name": "Vintageous",
"include": {
"dev": [
["*.*", ["*builder.py",
"*build.sh",
"*toplist.py",
"*.sublime-workspace",
"*.sublime-project",
"*.JSON-tmLanguage",
"*.ps1",
"*.hg*",
"TODO.txt",
"*manifest.json"]
],
["./tests/*.py", []],
["./tests/vi/*.py", []],
["./tests/ex/*.py", []],
["./tests/commands/*.py", []],
["./vi/*.py", []],
["./ex/*.py", []],
["./ex/parser/*.py", []],
["./plugins/*.py", []],
["./ex/plat/*.py", []],
["./Development/*.*", []]
],
"release": [
["*.*", ["*builder.py",
"*build.sh",
"*toplist.py",
"*.sublime-workspace",
"*.sublime-project",
"*.JSON-tmLanguage",
"*.ps1",
"*.hg*",
"dev_*.py",
"*manifest.json",
"Default.sublime-commands",
"test_runner.py"]
],
["./vi/*.py", []],
["./ex/*.py", []],
["./plugins/*.py", []],
["./ex/parsers/*.py", []],
["./ex/parsers/new/*.py", []],
["./ex/plat/*.py", []]
]
}
}