-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wp-now: execute blueprint steps given a file path #82
Changes from all commits
124f62d
3d2b4a6
6602715
49dde3a
f616148
82011a5
498d7c7
753eb73
f9ef309
83b77e2
9cdae2a
f0e91f1
9124473
420ef76
a1ecbfb
0263f8e
a426b99
ba1ad7a
b749bec
598c570
56f2e44
e821a67
f42ddfd
d61b6c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v18.13.0 | ||
v20.0.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { runCli } from './run-cli'; | ||
|
||
const requiredMajorVersion = 18; | ||
const requiredMajorVersion = 20; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the future, can we handle version bumps as a separate PR? |
||
|
||
const currentNodeVersion = parseInt(process.versions?.node?.split('.')?.[0]); | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"steps": [ | ||
{ | ||
"step": "defineWpConfigConsts", | ||
"consts": { | ||
"WP_HOME": "http://127.0.0.1", | ||
"WP_SITEURL": "http://127.0.0.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using |
||
}, | ||
"virtualize": true | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"steps": [ | ||
{ | ||
"step": "defineWpConfigConsts", | ||
"consts": { | ||
"WP_DEBUG_LOG": "/var/www/html/wp-content/themes/fake/example.log" | ||
}, | ||
"virtualize": true | ||
} | ||
] | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for including docs! I cleaned up a couple of things with #85