forked from the-events-calendar/the-events-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.puprc
82 lines (82 loc) · 1.56 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
76
77
78
79
80
81
82
{
"build": [
"cd common && rm -rf vendor",
"cd common && git checkout -- vendor",
"cd common && composer install --no-dev",
"cd common && npm run build",
"composer install --no-dev",
"npm ci",
"npm run build"
],
"build_dev": [
"cd common && rm -rf vendor",
"cd common && git checkout -- vendor",
"cd common && composer install --no-dev",
"cd common && npm run build",
"composer install",
"npm ci",
"npm run 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"
},
{
"path": "common/lang",
"textdomain": "tribe-common",
"url": "https://translations.theeventscalendar.com",
"slug": "tribe-common"
}
],
"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"
}