Skip to content

Instantly share code, notes, and snippets.

@dansalias
dansalias / package.json
Last active July 3, 2022 15:00
Squash npm version bumps into previous commit
{
"scripts": {
"postversion": "git reset --soft HEAD~1 && git commit --amend -C HEAD",
...
}
...
}
}
@dansalias
dansalias / htmlElementWithAttributes.js
Created January 14, 2020 15:15
Create DOM elements with attributes.
const myScript = Object.assign(document.createElement('script'), {
src: '/some-script.js',
type: 'text/javascript',
async: true,
});
document.head.appendChild(myScript);