Skip to content

Commit

Permalink
fix: fix static property
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed Oct 8, 2023
1 parent a9992a1 commit 3b1170b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
registry-url: 'https://registry.npmjs.org/'
- run: pnpm i
- run: pnpm build
- run: npm publish
- run: pnpm publish --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nostalgist",
"description": "Nostalgist.js is a JavaScript library that allows you to run emulators of retro consoles within web browsers.",
"version": "0.1.5",
"version": "0.1.6",
"author": {
"name": "arianrhodsandlot",
"email": "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion src/nostalgist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function baseName(url: string) {
}

export class Nostalgist {
static Nostalgist: Nostalgist
static Nostalgist = Nostalgist

private static globalOptions = getDefaultOptions()

Expand Down

0 comments on commit 3b1170b

Please sign in to comment.