See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
/** | |
* Shootbot for Echometer | |
*/ | |
class SB { | |
websocket = null; | |
constructor() { | |
const retroId = window.location.pathname.split("/").at(-1); | |
this.xsrfToken = document.cookie.split(";").map(x => x.trim().split("=")).filter(x => x[0].toLowerCase() == "xsrf-token")[0][1]; | |
this.websocket = new WebSocket(`wss://my.echometerapp.com/api/retro/${retroId}/events?isMobile=false`); |
#!/bin/sh | |
#################################################################################### | |
### LICENSE MIT | |
### | |
### Copyright (c) 2023 Christopher R. Jaeger | |
### | |
### Permission is hereby granted, free of charge, to any person obtaining a copy | |
### of this software and associated documentation files (the "Software"), to deal | |
### in the Software without restriction, including without limitation the rights | |
### to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
See how a minor change to your commit message style can make a difference.
Tip
Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs