"Uncaught SyntaxError: ambiguous indirect export"
I just wanted to take note of how I solved this with the yup package
I was getting the above error when importing like so:
import yup from 'yup'
angular.module('animated-checkmark', []).directive('animatedCheck', animatedCheck); | |
function animatedCheck() { | |
const svgTemplate = ` | |
<div class="checkmark-container"> | |
<svg class="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"> | |
<g> | |
<circle class="checkmark-outline" cx="26" cy="26" r="25" fill="none" /> | |
<circle class="checkmark-circle" cx="26" cy="26" r="25" fill="none" /> | |
<path class="checkmark-check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8" /> | |
</g> |
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= | |
Author: Michael Erb (Merb) | |
Description: Masking for email and phone number | |
License: MIT | |
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ | |
Vue.filter('mask-email', function(value) { | |
if (value) { | |
var indexAt = value.indexOf('@') | |
var emailArray = value.split('') |
getDistanceFromLatLonInM(lat1, lon1, lat2, lon2) { | |
var a = | |
Math.pow(Math.sin(deg2rad(lat2 - lat1) / 2), 2) + | |
Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2)) * | |
Math.pow(Math.sin(deg2rad(lon2 - lon1) / 2), 2); | |
return 12742000 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); | |
} |
"Uncaught SyntaxError: ambiguous indirect export"
I just wanted to take note of how I solved this with the yup package
I was getting the above error when importing like so:
import yup from 'yup'
Detailed instructions below but basically you need to startup the Mevo camera and start the stream. Then log into youtube and wait for YT to detect/recieve the stream. Once YT has the stream, then you can make it live.