Commit adc86806 authored by Jacob MacDonald's avatar Jacob MacDonald Committed by Flutter GitHub Bot

update incremental web compiler bootstrapping to use the new module names (#49073)

parent 0c2f51fc
......@@ -352,12 +352,12 @@ class WebDevFS implements DevFS {
generateBootstrapScript(
requireUrl: _filePathToUriFragment(requireJS.path),
mapperUrl: _filePathToUriFragment(stackTraceMapper.path),
entrypoint: '${_filePathToUriFragment(mainPath)}.js',
entrypoint: '${_filePathToUriFragment(mainPath)}.lib.js',
));
_webAssetServer.writeFile(
'/main_module.js',
generateMainModule(
entrypoint: '${_filePathToUriFragment(mainPath)}.js',
entrypoint: '${_filePathToUriFragment(mainPath)}.lib.js',
));
_webAssetServer.writeFile('/dart_sdk.js', dartSdk.readAsStringSync());
_webAssetServer.writeFile(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment