1. Урок 1. 00:01:40
    Course Overview
  2. Урок 2. 00:00:55
    Welcome
  3. Урок 3. 00:05:01
    Interactive Coding with Hot Module Replacement
  4. Урок 4. 00:04:02
    Seamless Compilation
  5. Урок 5. 00:00:45
    Consistent Tooling
  6. Урок 6. 00:01:24
    Modularity
  7. Урок 7. 00:05:06
    Benefit - Bundling for Performance
  8. Урок 8. 00:01:46
    Sophisticated Bundling
  9. Урок 9. 00:02:09
    npm Install, Import, Go!
  10. Урок 10. 00:01:46
    Help with Caching
  11. Урок 11. 00:02:02
    Source Maps Through Any Number of Transformations
  12. Урок 12. 00:04:12
    A Compiler Platform
  13. Урок 13. 00:02:56
    Course Series and Updates
  14. Урок 14. 00:01:14
    Cloning and Starting the Solitaire App
  15. Урок 15. 00:03:07
    The Legacy Solitaire App Structure
  16. Урок 16. 00:01:37
    Performance Problems in the Solitaire App
  17. Урок 17. 00:03:29
    Bundling app.js
  18. Урок 18. 00:02:36
    Inspecting and Using the App Bundle
  19. Урок 19. 00:01:24
    IIFEs Are No Longer Necessary
  20. Урок 20. 00:02:06
    Migrating a Second Module to the Bundle
  21. Урок 21. 00:02:33
    Webpack Polyfills Module Loading
  22. Урок 22. 00:01:18
    Webpack Polyfills Use Strict for Harmony Modules
  23. Урок 23. 00:03:06
    Learning from Webpack Source Code
  24. Урок 24. 00:04:01
    Generating an Interactive Graph of Modules
  25. Урок 25. 00:03:05
    Challenge
  26. Урок 26. 00:01:43
    Benefits of Watch and WDS
  27. Урок 27. 00:03:05
    Watch Mode
  28. Урок 28. 00:01:27
    Installing webpack-dev-server
  29. Урок 29. 00:02:26
    npm run-scripts for Documenting Webpack Commands
  30. Урок 30. 00:01:03
    Composing npm Scripts
  31. Урок 31. 00:02:59
    Adding a webpack.config.js File
  32. Урок 32. 00:05:10
    devServer.contentBase - Set Location of Static Content on Disk
  33. Урок 33. 00:03:19
    devServer.publicPath - Set Base URL to Serve Webpack Output
  34. Урок 34. 00:02:26
    devServer.watchContentBase - Reload on Static File Changes
  35. Урок 35. 00:00:43
    Webpack Configuration Documentation
  36. Урок 36. 00:03:33
    Looking Under the Hood of the DevServer
  37. Урок 37. 00:01:32
    Hot Module Replacement Overview
  38. Урок 38. 00:01:48
    devServer.hot and the HotModuleReplacementPlugin
  39. Урок 39. 00:01:22
    Reload Fallback
  40. Урок 40. 00:01:18
    Automatic Restart After Changing webpack.config.js
  41. Урок 41. 00:01:50
    Disable Reload Fallback
  42. Урок 42. 00:01:16
    output.publicPath
  43. Урок 43. 00:01:30
    Identifying Modules by Name with the NamedModulesPlugin
  44. Урок 44. 00:02:42
    Hot Swapping Methods in a Live Application
  45. Урок 45. 00:01:35
    Hot Swapping Can Maintain State
  46. Урок 46. 00:01:15
    Inspecting Hot Updates
  47. Урок 47. 00:01:00
    Recap
  48. Урок 48. 00:00:44
    Intro
  49. Урок 49. 00:03:41
    HMR Plugin Bloats Production Builds
  50. Урок 50. 00:03:04
    Conditionally Adding Plugins with NODE_ENV Environment Variable
  51. Урок 51. 00:01:44
    cross-env and dotenv Help with Cross-platform Env Vars
  52. Урок 52. 00:02:34
    Using a CLI Argument to Set the Environment
  53. Урок 53. 00:01:03
    Environment Option Uses yargs
  54. Урок 54. 00:02:14
    Multiple and Named Configurations
  55. Урок 55. 00:01:39
    Modularizing Config Files
  56. Урок 56. 00:02:25
    webpack-merge to Merge Configuration Objects
  57. Урок 57. 00:02:18
    Inspecting the Merged Configuration and Config Defaults
  58. Урок 58. 00:02:25
    Conditional Code with the DefinePlugin
  59. Урок 59. 00:01:37
    Careful to Quote String Constants
  60. Урок 60. 00:01:49
    Passing Env Options or Variables Through to Code Constants
  61. Урок 61. 00:01:34
    Touch-ups and Recap
  62. Урок 62. 00:01:24
    Intro
  63. Урок 63. 00:02:09
    Installing Relevant Babel Packages
  64. Урок 64. 00:03:48
    Why @babel/preset-env
  65. Урок 65. 00:01:44
    Using ES6 Class Syntax
  66. Урок 66. 00:02:21
    Adding a babel-loader Rule
  67. Урок 67. 00:01:44
    webpack-dev-server Adds Modules to the Bundle
  68. Урок 68. 00:02:07
    Excluding node_modules from babel-loader
  69. Урок 69. 00:01:26
    Adding @babel/preset-env to Transform Classes
  70. Урок 70. 00:02:40
    Do Not Transform Harmony Imports and Exports
  71. Урок 71. 00:02:28
    devServer.overlay - Showing Compilation Errors in the Browser
  72. Урок 72. 00:04:09
    Understanding Browserslist Queries
  73. Урок 73. 00:03:29
    Extracting .babelrc.js
  74. Урок 74. 00:00:33
    babel-loader Works with .babelrc.js Too
  75. Урок 75. 00:03:12
    Disabling babel-loader in Development Builds
  76. Урок 76. 00:00:45
    How to Tell babel-loader to Ignore .babelrc
  77. Урок 77. 00:02:41
    Polyfills
  78. Урок 78. 00:01:02
    Webpack Runtime Uses Promises That Might Need to Be Polyfilled
  79. Урок 79. 00:01:20
    devServer.host - Configuring External Access to WDS
  80. Урок 80. 00:00:48
    Enable Transpilation in Development as Needed
  81. Урок 81. 00:00:51
    Fix Polyfill Issues by Reproducing the Problem
  82. Урок 82. 00:03:23
    Webpack Makes Using npm Packages Facile
  83. Урок 83. 00:02:12
    Studying the Impact of @babel/polyfill
  84. Урок 84. 00:01:14
    Testing the Promise Polyfill
  85. Урок 85. 00:03:07
    Reducing Polyfills with core-js
  86. Урок 86. 00:02:32
    Reducing Polyfills to Just Promise
  87. Урок 87. 00:01:41
    You Don't Need to Manually Triangulate Polyfills
  88. Урок 88. 00:02:35
    useBuiltIns: 'entry' - Polyfill Based on Target Browsers
  89. Урок 89. 00:01:07
    Changing Browser Query Changes Polyfills
  90. Урок 90. 00:02:06
    useBuiltIns: 'usage' - Polyfill Based on Target Browsers and Usage
  91. Урок 91. 00:01:06
    Using the Promise Built-in Adds Another Polyfill for IE 11
  92. Урок 92. 00:02:32
    Someday: @babel/plugintransform-runtime + @babel/preset-env
  93. Урок 93. 00:01:29
    Takeaways
  94. Урок 94. 00:02:01
    What Is a Loader?
  95. Урок 95. 00:01:46
    Designing a tee-loader
  96. Урок 96. 00:02:25
    Creating a tee-loader
  97. Урок 97. 00:01:46
    resolveLoader.alias to Resolve a Custom Loader
  98. Урок 98. 00:01:17
    Logging Request and Source per Module
  99. Урок 99. 00:01:36
    Collapsing Grouped Webpack Console Output with Chrome DevTools
  100. Урок 100. 00:00:33
    Debugging Webpack with Chrome DevTools
  101. Урок 101. 00:00:50
    Adding the Same Loader Twice
  102. Урок 102. 00:01:46
    Passing and Parsing Options in the tee-loader
  103. Урок 103. 00:00:33
    Legacy Option Passing via a Query String
  104. Урок 104. 00:03:06
    Inline Loaders Are Occasionally Useful
  105. Урок 105. 00:03:15
    Learn More by Building Loaders - Try a Pitching Cache Loader
  106. Урок 106. 00:01:22
    What About Build Tasks?
  107. Урок 107. 00:03:45
    Cleaning the Output Folder Before Bundling
  108. Урок 108. 00:04:58
    Not Just Build Tasks: npm-install-webpack-plugin
  109. Урок 109. 00:03:01
    Finding Plugins for Common Build Tasks
  110. Урок 110. 00:01:07
    Bundling and Transpiling Make Troubleshooting Difficult
  111. Урок 111. 00:03:10
    Runtime Errors Aren't as Transparent as Compilation Errors
  112. Урок 112. 00:02:07
    Enabling Source Maps with devtool: "source-map"
  113. Урок 113. 00:04:50
    How devtool: "source-map" Works
  114. Урок 114. 00:05:03
    Fast, Inline, Partial Source Maps - devtool: "eval"
  115. Урок 115. 00:05:22
    High Quality Maps with Fast Incremental Rebuild - devtool: "eval-source-map"
  116. Урок 116. 00:03:46
    devtool: "hidden-source-map"
  117. Урок 117. 00:01:35
    Only Map Location and Filename, Not Source Code - devtool: "nosources-source-map"
  118. Урок 118. 00:03:46
    Resources
  119. Урок 119. 00:06:54
    devtool Is Just an Idiosyncratic, String Based Serialization of Plugin Options
  120. Урок 120. 00:03:13
    Add the SourceMapDevToolPlugin Directly for Flexibility Instead of Using devtool
  121. Урок 121. 00:06:35
    Challenge: Building a codegen-loader to Capture Build Information
  122. Урок 122. 00:04:10
    Explanation of the Starting Point to My Solution
  123. Урок 123. 00:08:10
    My Solution
  124. Урок 124. 00:01:00
    The End