Skip to content

Commit

Permalink
Fix CDN url
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarrough committed Aug 5, 2023
1 parent 423860e commit 3bb01ed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
module.exports = {
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
}
env: {
browser: true,
es2021: true,
node: true,
},
extends: 'eslint:recommended',
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {},
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,7 @@ We use [vite](https://vitejs.dev/) in library mode to bundle the project. We out
- dist/sdk.js (esm, good for browsers and newer node.js)
Our package.json defines the `main`, `module` and `exports` fields to specify which file should be loaded in which environment.
## How to release a new version
Create a new, tagged release via the github.com website UI. That will trigger the GitHub action to publish to NPM.

0 comments on commit 3bb01ed

Please sign in to comment.