mirror of
				https://github.com/home-assistant/frontend.git
				synced 2025-11-04 08:29:52 +00:00 
			
		
		
		
	Use ES5 build for Supervisor on Safari 12 and below (#9485)
This commit is contained in:
		@@ -302,15 +302,23 @@ gulp.task("gen-index-hassio-prod", async () => {
 | 
			
		||||
 | 
			
		||||
function writeHassioEntrypoint(latestEntrypoint, es5Entrypoint) {
 | 
			
		||||
  fs.mkdirSync(paths.hassio_output_root, { recursive: true });
 | 
			
		||||
  // Safari 12 and below does not have a compliant ES2015 implementation of template literals, so we ship ES5
 | 
			
		||||
  fs.writeFileSync(
 | 
			
		||||
    path.resolve(paths.hassio_output_root, "entrypoint.js"),
 | 
			
		||||
    `
 | 
			
		||||
try {
 | 
			
		||||
  new Function("import('${latestEntrypoint}')")();
 | 
			
		||||
} catch (err) {
 | 
			
		||||
function loadES5() {
 | 
			
		||||
  var el = document.createElement('script');
 | 
			
		||||
  el.src = '${es5Entrypoint}';
 | 
			
		||||
  document.body.appendChild(el);
 | 
			
		||||
}
 | 
			
		||||
if (/.*Version\/(?:11|12)(?:\.\d+)*.*Safari\//.test(navigator.userAgent)) {
 | 
			
		||||
    loadES5();
 | 
			
		||||
} else {
 | 
			
		||||
  try {
 | 
			
		||||
    new Function("import('${latestEntrypoint}')")();
 | 
			
		||||
  } catch (err) {
 | 
			
		||||
    loadES5();
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
  `,
 | 
			
		||||
    { encoding: "utf-8" }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user