Is there a mapping from git branch version to npm version to versions stored on the CDN?
Is https://global.oktacdn.com/okta-signin-widget/5.0.0/js/okta-sign-in.js
the same as
npm install @okta/okta-signin-widget@5.0.0 --save
git clone -b 5.0 https://github.com/okta/okta-signin-widget.git
does look like npm has ‘5.0.0’, ‘5.0.1’, ‘5.0.2’
and the CDN seems to match with those options available as well,
while git only has that 5.0 branch How are versions labeled?