Skip to content

fix($core): isProd is undefined in ready hook #2028

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

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions packages/@vuepress/core/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ function createApp (options) {

async function dev (options) {
const app = createApp(options)
app.isProd = false
await app.process()
return app.dev()
}

async function build (options) {
const app = createApp(options)
app.isProd = true
await app.process()
return app.build()
}
Expand Down
2 changes: 0 additions & 2 deletions packages/@vuepress/core/lib/node/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ module.exports = class App {
*/

async dev () {
this.isProd = false
this.devProcess = new DevProcess(this)
await this.devProcess.process()
const error = await new Promise(resolve => {
Expand Down Expand Up @@ -489,7 +488,6 @@ module.exports = class App {
*/

async build () {
this.isProd = true
this.buildProcess = new BuildProcess(this)
await this.buildProcess.process()
await this.buildProcess.render()
Expand Down