You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deprecated valid-jsdoc rule of eslint does not support using
typescript syntax for types, while it allows being more precise about
types in a much more readable way than using the older jsdoc syntax with
separate typedef or callback definitions.
The plugin also implements more rules than what valid-jsdoc does.
thrownewError('The configureExtractTextPlugin() method was removed from Encore. The underlying plugin was removed from Webpack 4.');
1640
1640
}
1641
1641
1642
1642
/**
1643
1643
* @deprecated
1644
-
* @return {void}
1644
+
* @returns {void}
1645
1645
*/
1646
1646
enableCoffeeScriptLoader(){
1647
1647
thrownewError('The enableCoffeeScriptLoader() method and CoffeeScript support was removed from Encore due to support problems with Webpack 4. If you are interested in this feature, please submit a pull request!');
1648
1648
}
1649
1649
1650
1650
/**
1651
1651
* @deprecated
1652
-
* @return {void}
1652
+
* @returns {void}
1653
1653
*/
1654
1654
configureUglifyJsPlugin(){
1655
1655
thrownewError('The configureUglifyJsPlugin() method was removed from Encore due to uglify-js dropping ES6+ support in its latest version. Please use configureTerserPlugin() instead.');
1656
1656
}
1657
1657
1658
1658
/**
1659
1659
* @deprecated
1660
-
* @return {void}
1660
+
* @returns {void}
1661
1661
*/
1662
1662
configureLoaderOptionsPlugin(){
1663
1663
thrownewError('The configureLoaderOptionsPlugin() method was removed from Encore. The underlying plugin should not be needed anymore unless you are using outdated loaders. If that\'s the case you can still add it using addPlugin().');
@@ -1667,6 +1667,7 @@ class Encore {
1667
1667
/**
1668
1668
* Proxy the API in order to prevent calls to most of its methods
1669
1669
* if the webpackConfig object hasn't been initialized yet.
0 commit comments