Skip to content

Commit 81d29ab

Browse files
committed
feat: warn when user modifies output.path directly
1 parent 87892a5 commit 81d29ab

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

packages/@vue/cli-service/lib/PluginAPI.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
const path = require('path')
2+
const chalk = require('chalk')
23
const { matchesPluginId } = require('@vue/cli-shared-utils')
34

45
class PluginAPI {
@@ -114,7 +115,18 @@ class PluginAPI {
114115
* @return {object} Raw webpack config.
115116
*/
116117
resolveWebpackConfig (chainableConfig) {
117-
return this.service.resolveWebpackConfig(chainableConfig)
118+
const config = this.service.resolveWebpackConfig(chainableConfig)
119+
// performa a few warning checks
120+
const options = this.service.projectOptions
121+
if (config.output.path !== this.resolve(options.outputDir)) {
122+
console.error(chalk.red(
123+
`\n\nConfiguration Error: ` +
124+
`Avoid modifying webpack output.path directly. ` +
125+
`Use the "outputDir" option instead.\n`
126+
))
127+
process.exit(1)
128+
}
129+
return config
118130
}
119131

120132
/**

0 commit comments

Comments
 (0)