Fix path for require.js (#118120)

- Matches new location in the Dart SDK.
   https://dart-review.googlesource.com/c/sdk/+/275482
- Includes fall back logic so the existing and new locations will work
  depending on the file that is available.
This commit is contained in:
Nicholas Shahan 2023-01-09 14:44:23 -08:00 committed by GitHub
parent 02a8bbfaff
commit e9bbb1137f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -926,14 +926,31 @@ class WebDevFS implements DevFS {
}
@visibleForTesting
final File requireJS = globals.fs.file(globals.fs.path.join(
globals.artifacts!.getArtifactPath(Artifact.engineDartSdkPath, platform: TargetPlatform.web_javascript),
'lib',
'dev_compiler',
'kernel',
'amd',
'require.js',
));
final File requireJS = (() {
// TODO(nshahan): Remove the initilizing function once the file location
// change in the Dart SDK has landed and rolled to the engine
// and flutter repos. There is no long-term need for the
// fallback logic.
// See https://github.com/flutter/flutter/issues/118119
final File oldFile = globals.fs.file(globals.fs.path.join(
globals.artifacts!.getArtifactPath(Artifact.engineDartSdkPath, platform: TargetPlatform.web_javascript),
'lib',
'dev_compiler',
'kernel',
'amd',
'require.js',
));
return oldFile.existsSync()
? oldFile
: globals.fs.file(globals.fs.path.join(
globals.artifacts!.getArtifactPath(Artifact.engineDartSdkPath, platform: TargetPlatform.web_javascript),
'lib',
'dev_compiler',
'amd',
'require.js',
));
})();
@visibleForTesting
final File stackTraceMapper = globals.fs.file(globals.fs.path.join(