feat tracker: release tracker v13
This commit is contained in:
parent
ae4357c71a
commit
ab3a82db4b
8 changed files with 6 additions and 7 deletions
|
|
@ -22,5 +22,5 @@ MINIO_ACCESS_KEY = ''
|
|||
MINIO_SECRET_KEY = ''
|
||||
|
||||
# APP and TRACKER VERSIONS
|
||||
VERSION = 1.16.0
|
||||
TRACKER_VERSION = '11.0.1'
|
||||
VERSION = 1.18.0
|
||||
TRACKER_VERSION = '13.0.0'
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -20,7 +20,7 @@
|
|||
"build-cjs": "rm -Rf cjs && tsc --project tsconfig-cjs.json && echo '{ \"type\": \"commonjs\" }' > cjs/package.json && bun run replace-paths && bun run replace-req-version",
|
||||
"replace-paths": "replace-in-files cjs/* --string='@openreplay/tracker' --replacement='@openreplay/tracker/cjs' && replace-in-files cjs/* --string='/lib/' --replacement='/'",
|
||||
"replace-pkg-version": "sh pkgver.sh",
|
||||
"replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='12.0.0'",
|
||||
"replace-req-version": "replace-in-files lib/* cjs/* --string='REQUIRED_TRACKER_VERSION' --replacement='13.0.0'",
|
||||
"prepublishOnly": "bun run test && bun run build",
|
||||
"prepare": "cd ../../ && husky install tracker/.husky/",
|
||||
"lint-front": "lint-staged",
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker-redux",
|
||||
"description": "Tracker plugin for Redux state recording",
|
||||
"version": "3.6.1-beta.2",
|
||||
"version": "4.0.0",
|
||||
"keywords": [
|
||||
"redux",
|
||||
"logging",
|
||||
|
|
|
|||
|
|
@ -71,9 +71,8 @@ export default function(opts: Partial<Options> = {}) {
|
|||
const _currState = data.state;
|
||||
const _table = data.table;
|
||||
const _timestamp = data.timestamp;
|
||||
console.log('encoded', _action, _currState, _table, _timestamp, app?.timestamp())
|
||||
for (let key in _table) app.send(Messages.OTable(key, _table[key]));
|
||||
app.send(Messages.Redux(_action, _currState, duration, _timestamp)); // TODO: add timestamp
|
||||
app.send(Messages.Redux(_action, _currState, duration, _timestamp));
|
||||
}
|
||||
}
|
||||
worker.onerror = (e) => {
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -51,7 +51,7 @@
|
|||
"typescript": "^4.9.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@medv/finder": "^3.1.0",
|
||||
"@medv/finder": "^3.2.0",
|
||||
"error-stack-parser": "^2.0.6",
|
||||
"fflate": "^0.8.2"
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue