Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "toast-me", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Creates toast messages", | ||
@@ -5,0 +5,0 @@ "main": "lib/toast-me.min.js", |
const ToastMe = require('./toastMe'); | ||
const ToastOptions = require('./optionsLib'); | ||
console.log(2); | ||
export { | ||
ToastOptions, | ||
module.exports = { | ||
ToastOptions: ToastOptions, | ||
default: function ( | ||
content, | ||
receivedOptions, | ||
action, | ||
) { | ||
return new ToastMe(content, receivedOptions, action); | ||
}, | ||
}; | ||
export default function ( | ||
content, | ||
receivedOptions, | ||
action, | ||
) { | ||
return new ToastMe(content, receivedOptions, action); | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
433684
1254