Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mschuwalow committed Sep 18, 2023
1 parent 63b3c58 commit 8a604b2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 77 deletions.
74 changes: 0 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
"@babel/runtime": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-terser": "^0.4.3",
Expand Down
7 changes: 6 additions & 1 deletion rollup/dist.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import mjsEntry from 'rollup-plugin-mjs-entry'
import dts from 'rollup-plugin-dts'
import del from "rollup-plugin-delete";
import terser from '@rollup/plugin-terser'
import commonJs from '@rollup/plugin-commonjs'

const OUTPUT_DIR = './dist'

Expand All @@ -30,6 +29,12 @@ export default [
strip(),
terser(),
mjsEntry() // https://nodejs.org/api/packages.html#packages_dual_commonjs_es_module_packages
],
external: [
'live-connect-common',
'tiny-hashes/md5',
'tiny-hashes/sha1',
'tiny-hashes/sha256',
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export interface ILiveConnect {
push: (event: unknown) => void
fire: () => void
resolve?: (
successCallBack: (result: IdentityResultionResult) => void,
successCallBack: (result: IdentityResultionResult, expiresAt: Date) => void,
errorCallBack: () => void,
additionalParams?: ResolutionParams
) => void
Expand Down

0 comments on commit 8a604b2

Please sign in to comment.