File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ class Encore {
124
124
}
125
125
126
126
/**
127
- * Allows you to configure the options passed to the friendly-errors-webpack-plugin.
128
- * A list of available options can be found at https://github.com/geowarin /friendly-errors-webpack-plugin
127
+ * Allows you to configure the options passed to the @nuxt/ friendly-errors-webpack-plugin.
128
+ * A list of available options can be found at https://github.com/nuxt /friendly-errors-webpack-plugin
129
129
*
130
130
* For example:
131
131
*
Original file line number Diff line number Diff line change 10
10
'use strict' ;
11
11
12
12
const WebpackConfig = require ( '../WebpackConfig' ) ; //eslint-disable-line no-unused-vars
13
- const FriendlyErrorsWebpackPlugin = require ( 'friendly-errors-webpack-plugin' ) ; //eslint-disable-line no-unused-vars
13
+ const FriendlyErrorsWebpackPlugin = require ( '@nuxt/ friendly-errors-webpack-plugin' ) ; //eslint-disable-line no-unused-vars
14
14
const pathUtil = require ( '../config/path-util' ) ;
15
15
const AssetOutputDisplayPlugin = require ( '../friendly-errors/asset-output-display-plugin' ) ;
16
16
const PluginPriorities = require ( './plugin-priorities' ) ;
Original file line number Diff line number Diff line change 10
10
'use strict' ;
11
11
12
12
const WebpackConfig = require ( '../WebpackConfig' ) ; //eslint-disable-line no-unused-vars
13
- const FriendlyErrorsWebpackPlugin = require ( 'friendly-errors-webpack-plugin' ) ;
13
+ const FriendlyErrorsWebpackPlugin = require ( '@nuxt/ friendly-errors-webpack-plugin' ) ;
14
14
const missingCssFileTransformer = require ( '../friendly-errors/transformers/missing-css-file' ) ;
15
15
const missingCssFileFormatter = require ( '../friendly-errors/formatters/missing-css-file' ) ;
16
16
const missingLoaderTransformerFactory = require ( '../friendly-errors/transformers/missing-loader' ) ;
Original file line number Diff line number Diff line change 28
28
"@babel/core" : " ^7.7.0" ,
29
29
"@babel/plugin-syntax-dynamic-import" : " ^7.0.0" ,
30
30
"@babel/preset-env" : " ^7.10.0" ,
31
+ "@nuxt/friendly-errors-webpack-plugin" : " ^2.5.1" ,
31
32
"assets-webpack-plugin" : " 7.0.*" ,
32
33
"babel-loader" : " ^8.2.2" ,
33
34
"chalk" : " ^4.0.0" ,
34
35
"clean-webpack-plugin" : " ^3.0.0" ,
35
36
"css-loader" : " ^5.2.4" ,
36
37
"css-minimizer-webpack-plugin" : " ^2.0.0" ,
37
38
"fast-levenshtein" : " ^3.0.0" ,
38
- "friendly-errors-webpack-plugin" : " ^2.0.0-beta.2" ,
39
39
"loader-utils" : " ^2.0.0" ,
40
40
"mini-css-extract-plugin" : " ^1.5.0" ,
41
41
"pkg-up" : " ^3.1.0" ,
Original file line number Diff line number Diff line change 10
10
'use strict' ;
11
11
12
12
const expect = require ( 'chai' ) . expect ;
13
- const FriendlyErrorsWebpackPlugin = require ( 'friendly-errors-webpack-plugin' ) ;
13
+ const FriendlyErrorsWebpackPlugin = require ( '@nuxt/ friendly-errors-webpack-plugin' ) ;
14
14
const WebpackConfig = require ( '../../lib/WebpackConfig' ) ;
15
15
const RuntimeConfig = require ( '../../lib/config/RuntimeConfig' ) ;
16
16
const friendlyErrorsPluginUtil = require ( '../../lib/plugins/friendly-errors' ) ;
You can’t perform that action at this time.
0 commit comments