From d08e9ef86bbb53957c170c0566e4e5d9f7487932 Mon Sep 17 00:00:00 2001 From: Mars Date: Mon, 20 Apr 2020 04:30:56 -0700 Subject: [PATCH] Remove references to config/webpack/shared.js in commnets (#2540) --- lib/webpacker/helper.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/webpacker/helper.rb b/lib/webpacker/helper.rb index b9ff590f5..f3a11c2bb 100644 --- a/lib/webpacker/helper.rb +++ b/lib/webpacker/helper.rb @@ -61,7 +61,7 @@ def favicon_pack_tag(name, **options) end # Creates a script tag that references the named pack file, as compiled by webpack per the entries list - # in config/webpack/shared.js. By default, this list is auto-generated to match everything in + # in package/environments/base.js. By default, this list is auto-generated to match everything in # app/javascript/packs/*.js. In production mode, the digested reference is automatically looked up. # # Example: @@ -73,7 +73,7 @@ def javascript_pack_tag(*names, **options) end # Creates script tags that reference the js chunks from entrypoints when using split chunks API, - # as compiled by webpack per the entries list in config/webpack/shared.js. + # as compiled by webpack per the entries list in package/environments/base.js. # By default, this list is auto-generated to match everything in # app/javascript/packs/*.js and all the dependent chunks. In production mode, the digested reference is automatically looked up. # See: https://webpack.js.org/plugins/split-chunks-plugin/ @@ -110,7 +110,7 @@ def preload_pack_asset(name, **options) end # Creates a link tag that references the named pack file, as compiled by webpack per the entries list - # in config/webpack/shared.js. By default, this list is auto-generated to match everything in + # in package/environments/base.js. By default, this list is auto-generated to match everything in # app/javascript/packs/*.js. In production mode, the digested reference is automatically looked up. # # Note: If the development server is running and hot module replacement is active, this will return nothing. @@ -132,7 +132,7 @@ def stylesheet_pack_tag(*names, **options) end # Creates link tags that reference the css chunks from entrypoints when using split chunks API, - # as compiled by webpack per the entries list in config/webpack/shared.js. + # as compiled by webpack per the entries list in package/environments/base.js. # By default, this list is auto-generated to match everything in # app/javascript/packs/*.js and all the dependent chunks. In production mode, the digested reference is automatically looked up. # See: https://webpack.js.org/plugins/split-chunks-plugin/