-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy path.puprc
66 lines (66 loc) · 1.14 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
66
{
"build": [
"pup do build-common",
"composer install --no-dev",
"npm ci",
"npm run build"
],
"build_dev": [
"pup do build-common",
"composer install",
"npm ci",
"npm run build"
],
"workflows": {
"build-common": [
"cd common && pup build"
]
},
"checks": {
"tbd": {
"dirs": [ "src" ]
},
"version-conflict": {}
},
"i18n": [
{
"textdomain": "event-tickets",
"url": "https://translate.wordpress.org",
"slug": "wp-plugins/event-tickets/stable"
},
{
"textdomain": "event-tickets",
"url": "https://translations.stellarwp.com",
"slug": "event-tickets"
}
],
"paths": {
"changelog": "readme.txt",
"css": [ "src/resources/postcss" ],
"js": [
"src/resources/js",
"src/modules"
],
"sync_files": [],
"versions": [
{
"file": "src/Tribe/Main.php",
"regex": "(const VERSION += ')([^']+)"
},
{
"file": "event-tickets.php",
"regex": "(Version: )(.+)"
},
{
"file": "package.json",
"regex": "(\"version\": ?\")([^\"]+)"
},
{
"file": "readme.txt",
"regex": "(Stable tag: )(.+)"
}
],
"views": [ "src/views" ]
},
"zip_name": "event-tickets"
}