-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy path.puprc
65 lines (65 loc) · 1.06 KB
/
.puprc
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
55
56
57
58
59
60
61
62
63
64
65
{
"build": [
"composer -- pup",
"rm -rf vendor",
"git checkout -- vendor",
"composer install --no-dev",
"npm ci --no-audit --no-fund",
"npm run build"
],
"build_dev": [
"composer -- pup",
"rm -rf vendor",
"git checkout -- vendor",
"composer install",
"npm ci --no-audit --no-fund",
"npm run build"
],
"checks": {
"tbd": {
"dirs": [
"src"
]
},
"version-conflict": {}
},
"i18n": [
{
"slug": "tribe-common",
"textdomain": "tribe-common",
"url": "https://translations.stellarwp.com/glotpress/"
}
],
"paths": {
"changelog": "readme.txt",
"css": [
"src/resources/postcss"
],
"js": [
"src/resources/js",
"src/modules"
],
"sync_files": [
".distfiles",
".gitattributes"
],
"versions": [
{
"file": "src/Tribe/Main.php",
"regex": "(const VERSION += ')([^']+)"
},
{
"file": "tribe-common.php",
"regex": "(Version: )(.+)"
},
{
"file": "package.json",
"regex": "(\"version\": ?\")([^\"]+)"
}
],
"views": [
"src/views"
]
},
"zip_name": "tribe-common"
}