-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathvalidator.js
93 lines (75 loc) · 3.17 KB
/
validator.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* This file is part of the Symfony Webpack Encore package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
'use strict';
/**
* @import WebpackConfig from '../WebpackConfig'
*/
const pathUtil = require('./path-util');
const logger = require('./../logger');
class Validator {
/**
* @param {WebpackConfig} webpackConfig
*/
constructor(webpackConfig) {
this.webpackConfig = webpackConfig;
}
validate() {
this._validateBasic();
this._validatePublicPathAndManifestKeyPrefix();
this._validateDevServer();
this._validateCacheGroupNames();
}
_validateBasic() {
if (this.webpackConfig.outputPath === null) {
throw new Error('Missing output path: Call setOutputPath() to control where the files will be written.');
}
if (this.webpackConfig.publicPath === null) {
throw new Error('Missing public path: Call setPublicPath() to control the public path relative to where the files are written (the output path).');
}
if (this.webpackConfig.entries.size === 0
&& this.webpackConfig.styleEntries.size === 0
&& this.webpackConfig.copyFilesConfigs.length === 0
&& this.webpackConfig.plugins.length === 0
) {
throw new Error('No entries found! You must call addEntry() or addEntries() or addStyleEntry() or copyFiles() or addPlugin() at least once - otherwise... there is nothing to webpack!');
}
}
_validatePublicPathAndManifestKeyPrefix() {
pathUtil.validatePublicPathAndManifestKeyPrefix(this.webpackConfig);
}
_validateDevServer() {
if (!this.webpackConfig.useDevServer()) {
return;
}
if (this.webpackConfig.useVersioning) {
throw new Error('Don\'t enable versioning with the dev-server. A good setting is Encore.enableVersioning(Encore.isProduction()).');
}
/*
* An absolute publicPath is incompatible with webpackDevServer.
* This is because we want to *change* the publicPath to point
* to the webpackDevServer URL (e.g. http://localhost:8080/).
* There are some valid use-cases for not wanting this behavior
* (see #59), but we want to warn the user.
*/
if (this.webpackConfig.publicPath.includes('://')) {
logger.warning(`Passing an absolute URL to setPublicPath() *and* using the dev-server can cause issues. Your assets will load from the publicPath (${this.webpackConfig.publicPath}) instead of from the dev server URL.`);
}
}
_validateCacheGroupNames() {
for (const groupName of Object.keys(this.webpackConfig.cacheGroups)) {
if (['defaultVendors', 'default'].includes(groupName)) {
logger.warning(`Passing "${groupName}" to addCacheGroup() is not recommended, as it will override the built-in cache group by this name.`);
}
}
}
}
module.exports = function(webpackConfig) {
const validator = new Validator(webpackConfig);
validator.validate();
};