forked from the-events-calendar/tribe-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.puprc
61 lines (61 loc) · 1.05 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
{
"build": [
"echo 'building Tribe Common in: '$(pwd)",
"rm -rf vendor",
"git checkout -- vendor",
"composer install --no-dev",
"npm ci",
"npm run build"
],
"build_dev": [
"echo 'building Tribe Common in: '$(pwd)",
"rm -rf vendor",
"git checkout -- vendor",
"composer install",
"npm ci",
"npm run build"
],
"checks": {
"tbd": {
"dirs": [ "src" ]
},
"version-conflict": {}
},
"i18n": [
{
"textdomain": "tribe-common",
"url": "https://translations.theeventscalendar.com",
"slug": "tribe-common"
}
],
"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"
}