Skip to content

Commit

Permalink
move serializator to monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Aug 17, 2023
1 parent fbbcf92 commit beeceb7
Show file tree
Hide file tree
Showing 23 changed files with 4,361 additions and 1,565 deletions.
2 changes: 1 addition & 1 deletion packages/advanced-workers/lib/workerHandler.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { parentPort, workerData } = require('worker_threads')
const callbackQueue = require('./callbacksQueue')()
const convertUint8ArrayToBuffer = require('./convertUint8ArrayToBuffer')
const serializator = require('serializator')
const serializator = require('@jsreport/serializator')

function asyncAwaiter () {
const awaiter = {}
Expand Down
4 changes: 2 additions & 2 deletions packages/advanced-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"dependencies": {
"debug": "4.3.1",
"serializator": "1.0.2",
"@jsreport/serializator": "0.1.0",
"uuid": "8.3.2"
},
"devDependencies": {
Expand All @@ -33,4 +33,4 @@
"mocha": true
}
}
}
}
190 changes: 95 additions & 95 deletions packages/jsreport-core/package.json
Original file line number Diff line number Diff line change
@@ -1,95 +1,95 @@
{
"name": "@jsreport/jsreport-core",
"version": "3.12.0",
"description": "javascript based business reporting",
"keywords": [
"report",
"business",
"javascript"
],
"homepage": "https://github.com/jsreport/jsreport/tree/master/packages/jsreport-core",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jsreport/jsreport.git"
},
"license": "LGPL",
"author": {
"name": "Jan Blaha",
"email": "jan.blaha@hotmail.com"
},
"maintainers": [
{
"name": "pofider",
"email": "jan.blaha@hotmail.com"
}
],
"main": "index.js",
"files": [
"lib",
"index.js",
"test/store/common.js",
"test/blobStorage/common.js",
"test/extensions/validExtensions/listeners"
],
"scripts": {
"test": "mocha --timeout 5000 --recursive test --exit && standard",
"test:watch": "mocha --watch --recursive test"
},
"dependencies": {
"@babel/code-frame": "7.12.13",
"@babel/parser": "7.14.4",
"@babel/traverse": "7.12.9",
"@colors/colors": "1.5.0",
"@jsreport/advanced-workers": "1.3.0",
"@jsreport/mingo": "2.4.1",
"@jsreport/reap": "0.1.0",
"ajv": "6.12.6",
"app-root-path": "3.0.0",
"bytes": "3.1.2",
"camelcase": "5.0.0",
"debug": "4.3.2",
"decamelize": "2.0.0",
"deepmerge": "2.1.0",
"diff": "3.5.0",
"diff-match-patch": "1.0.5",
"enhanced-resolve": "5.8.3",
"has-own-deep": "1.1.0",
"isbinaryfile": "5.0.0",
"listener-collection": "2.0.0",
"lodash.get": "4.4.2",
"lodash.groupby": "4.6.0",
"lodash.omit": "4.5.0",
"lodash.set": "4.3.2",
"lru-cache": "4.1.1",
"ms": "2.1.3",
"nanoid": "3.2.0",
"nconf": "0.12.0",
"node.extend.without.arrays": "1.1.6",
"semver": "7.3.5",
"serializator": "1.0.2",
"stack-trace": "0.0.10",
"triple-beam": "1.3.0",
"unset-value": "2.0.1",
"uuid": "8.3.2",
"vm2": "3.9.19",
"winston": "3.8.1",
"winston-transport": "4.5.0",
"yieldable-json": "2.0.1"
},
"devDependencies": {
"@node-rs/jsonwebtoken": "0.2.0",
"mocha": "9.2.2",
"should": "13.2.3",
"standard": "16.0.4",
"std-mocks": "1.0.1",
"winston-loggly-bulk": "3.2.1"
},
"engines": {
"node": ">=16.11"
},
"standard": {
"env": {
"mocha": true
}
}
}
{
"name": "@jsreport/jsreport-core",
"version": "3.12.0",
"description": "javascript based business reporting",
"keywords": [
"report",
"business",
"javascript"
],
"homepage": "https://github.com/jsreport/jsreport/tree/master/packages/jsreport-core",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jsreport/jsreport.git"
},
"license": "LGPL",
"author": {
"name": "Jan Blaha",
"email": "jan.blaha@hotmail.com"
},
"maintainers": [
{
"name": "pofider",
"email": "jan.blaha@hotmail.com"
}
],
"main": "index.js",
"files": [
"lib",
"index.js",
"test/store/common.js",
"test/blobStorage/common.js",
"test/extensions/validExtensions/listeners"
],
"scripts": {
"test": "mocha --timeout 5000 --recursive test --exit && standard",
"test:watch": "mocha --watch --recursive test"
},
"dependencies": {
"@babel/code-frame": "7.12.13",
"@babel/parser": "7.14.4",
"@babel/traverse": "7.12.9",
"@colors/colors": "1.5.0",
"@jsreport/advanced-workers": "1.3.0",
"@jsreport/mingo": "2.4.1",
"@jsreport/reap": "0.1.0",
"ajv": "6.12.6",
"app-root-path": "3.0.0",
"bytes": "3.1.2",
"camelcase": "5.0.0",
"debug": "4.3.2",
"decamelize": "2.0.0",
"deepmerge": "2.1.0",
"diff": "3.5.0",
"diff-match-patch": "1.0.5",
"enhanced-resolve": "5.8.3",
"has-own-deep": "1.1.0",
"isbinaryfile": "5.0.0",
"listener-collection": "2.0.0",
"lodash.get": "4.4.2",
"lodash.groupby": "4.6.0",
"lodash.omit": "4.5.0",
"lodash.set": "4.3.2",
"lru-cache": "4.1.1",
"ms": "2.1.3",
"nanoid": "3.2.0",
"nconf": "0.12.0",
"node.extend.without.arrays": "1.1.6",
"semver": "7.3.5",
"@jsreport/serializator": "0.1.0",
"stack-trace": "0.0.10",
"triple-beam": "1.3.0",
"unset-value": "2.0.1",
"uuid": "8.3.2",
"vm2": "3.9.19",
"winston": "3.8.1",
"winston-transport": "4.5.0",
"yieldable-json": "2.0.1"
},
"devDependencies": {
"@node-rs/jsonwebtoken": "0.2.0",
"mocha": "9.2.2",
"should": "13.2.3",
"standard": "16.0.4",
"std-mocks": "1.0.1",
"winston-loggly-bulk": "3.2.1"
},
"engines": {
"node": ">=16.11"
},
"standard": {
"env": {
"mocha": true
}
}
}

0 comments on commit beeceb7

Please sign in to comment.