New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-miro-app

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-miro-app - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

2

dist/templates/default-ts/src/app.ts
function init() {
const root = document.querySelector('#app');
const root = document.querySelector('#root');

@@ -4,0 +4,0 @@ if (root) {

function init() {
document.querySelector(
'#app',
).innerHtml = `<button>Create your first widget</button>`;
const root = document.querySelector('#root');
const button = document.querySelector('button');
if (root) {
root.innerHTML = `<button>Create your first widget</button>`;
button.addEventListener('click', async () => {
await miro.board.widgets.create({type: 'sticker', text: 'Hello, World!'});
});
const button = document.querySelector('button');
if (button) {
button.addEventListener('click', async () => {
await miro.board.widgets.create({
type: 'sticker',
text: 'Hello, World!',
});
});
}
}
}
init();
{
"name": "create-miro-app",
"version": "0.1.6",
"version": "0.1.7",
"keywords": [

@@ -5,0 +5,0 @@ "miro",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc