Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"Test Author",
"Another Author"
],
"authorUrl": "https://example.com",
"homepage": "https://example.com",
"donateLink": "https://example.com/donate",
"tags": [
"test",
Expand Down Expand Up @@ -129,11 +129,9 @@
],
"additionalStepsAfterExecution": [
{
"step": "writeFile",
"path": "wp-content/uploads/custom-file.txt",
"content": {
"filename": "custom-file.txt",
"content": "This is a custom file created by the Blueprint."
"step": "writeFiles",
"files": {
"wp-content/uploads/custom-file.txt": "This is a custom file created by the Blueprint."
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
{
"step": "activateTheme",
"themeFolderName": "twentytwentythree"
"themeDirectoryName": "twentytwentythree"
},
{
"step": "cp",
Expand All @@ -32,18 +32,16 @@
{
"step": "defineConstants",
"constants": {
"WP_DEBUG": "true",
"SCRIPT_DEBUG": "false"
"WP_DEBUG": true,
"SCRIPT_DEBUG": false
}
},
{
"step": "installPlugin",
"plugin": {
"source": "jetpack",
"active": true,
"activationOptions": {
"mode": "development"
}
"source": "jetpack",
"active": true,
"activationOptions": {
"mode": "development"
}
},
{
Expand All @@ -58,9 +56,10 @@
}
},
{
"step": "writeFile",
"path": "/path/to/file.txt",
"content": "Hello World"
"step": "writeFiles",
"files": {
"/path/to/file.txt": "Hello World"
}
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@
}
],
[
"core/paragraph"
"core/paragraph",
{
"content": "This is a sample book."
}
]
],
"template_lock": "all"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
{
"step": "activateTheme",
"themeFolderName": "twentytwentythree"
"themeDirectoryName": "twentytwentythree"
},
{
"step": "cp",
Expand All @@ -38,12 +38,12 @@
},
{
"step": "installPlugin",
"plugin": "woocommerce"
"source": "woocommerce"
},
{
"step": "installTheme",
"source": "twentytwentyfour",
"activate": true,
"active": true,
"importStarterContent": true
},
{
Expand All @@ -68,7 +68,7 @@
"code": "echo 'Hello, World!';"
},
{
"step": "runSql",
"step": "runSQL",
"source": "./custom-queries.sql"
},
{
Expand All @@ -92,11 +92,9 @@
"command": "plugin list --format=json"
},
{
"step": "writeFile",
"path": "wp-content/uploads/new-file.txt",
"content": {
"filename": "content.txt",
"content": "This is the content of the file."
"step": "writeFiles",
"files": {
"wp-content/uploads/new-file.txt": "Content of file."
}
},
{
Expand Down