forked from the-events-calendar/the-events-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.puprc
75 lines (75 loc) · 1.25 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
67
68
69
70
71
72
73
74
75
{
"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",
"common/src"
]
},
"version-conflict": {}
},
"i18n": [
{
"textdomain": "the-events-calendar",
"url": "https://translate.wordpress.org",
"slug": "wp-plugins/the-events-calendar/stable"
}
],
"paths": {
"changelog": "readme.txt",
"css": [
"src/resources/postcss",
"common/src/resources/postcss"
],
"js": [
"src/resources/js",
"src/modules",
"common/src/resources/js",
"common/src/modules"
],
"sync_files": [
"common/.distfiles",
"common/.gitattributes"
],
"versions": [
{
"file": "src/Tribe/Main.php",
"regex": "(const VERSION += ')([^']+)"
},
{
"file": "the-events-calendar.php",
"regex": "(Version: )(.+)"
},
{
"file": "package.json",
"regex": "(\"version\": ?\")([^\"]+)"
},
{
"file": "readme.txt",
"regex": "(Stable tag: )(.+)"
}
],
"views": [
"src/views",
"common/src/views"
]
},
"zip_name": "the-events-calendar"
}