-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
.puprc
51 lines (51 loc) · 1.08 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
{
"build": [
"@composer install --no-dev --no-scripts",
"@composer run strauss-release",
"npm install --legacy-peer-deps",
"npm run build"
],
"build_dev": [
"@composer install --no-scripts",
"@composer run strauss-release",
"npm install --legacy-peer-deps",
"npm run build"
],
"checks": {
"version-conflict": {
"fail_method": "error",
"fail_method_dev": "warn"
}
},
"i18n": {
"path": "languages",
"formats": ["mo"],
"slug": "wp-plugins/fakerpress/stable",
"textdomain": "fakerpress",
"url": "https://translate.wordpress.org"
},
"paths": {
"build_dir": ".pup-build",
"changelog": "readme.txt",
"css": [],
"js": [],
"versions": [
{
"file": "src/FakerPress/Plugin.php",
"regex": "(const[ ]*VERSION[ ]*={1}[ ]*['\"]{1})([^'\"]+)"
},
{
"file": "fakerpress.php",
"regex": "(Version: +)(.+)"
},
{
"file": "readme.txt",
"regex": "(Stable tag: +)(.+)"
}
],
"zip_dir": ".pup-zip"
},
"repo": "bordoni/fakerpress",
"zip_use_default_ignore": false,
"zip_name": "fakerpress"
}