-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomeboy.json
More file actions
47 lines (47 loc) · 1.13 KB
/
homeboy.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"id": "wp-codebox",
"remote_url": "https://github.com/Automattic/wp-codebox.git",
"changelog_target": "CHANGELOG.md",
"extensions": {
"nodejs": {}
},
"build_artifact": "packages/wordpress-plugin/dist/wp-codebox.zip",
"version_targets": [
{
"file": "package.json",
"pattern": "\"version\":\\s*\"([0-9.]+)\""
},
{
"file": "packages/runtime-core/package.json",
"pattern": "\"version\":\\s*\"([0-9.]+)\""
},
{
"file": "packages/runtime-playground/package.json",
"pattern": "\"version\":\\s*\"([0-9.]+)\""
},
{
"file": "packages/cli/package.json",
"pattern": "\"version\":\\s*\"([0-9.]+)\""
},
{
"file": "packages/wordpress-plugin/wp-codebox.php",
"pattern": "Version:\\s*([0-9.]+)"
},
{
"file": "packages/wordpress-plugin/wp-codebox.php",
"pattern": "WP_CODEBOX_PLUGIN_VERSION',\\s*'([0-9.]+)"
}
],
"scripts": {
"build": [
"npm run package:wordpress-plugin"
],
"lint": [
"npm run build"
],
"test": [
"npm run smoke -- --group package",
"npm run release:package"
]
}
}