fix(core): update

This commit is contained in:
Philipp Kunz 2023-08-19 09:45:00 +02:00
parent 05f8e6812b
commit e88deb1b5f
5 changed files with 2328 additions and 923 deletions

View File

@ -21,14 +21,14 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartjson#README", "homepage": "https://gitlab.com/pushrocks/smartjson#README",
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.65", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.37", "@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.74", "@gitzone/tstest": "^1.0.77",
"@pushrocks/tapbundle": "^5.0.4", "@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^18.11.9" "@types/node": "^20.5.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartstring": "^4.0.5", "@push.rocks/smartstring": "^4.0.8",
"@types/buffer-json": "^2.0.1", "@types/buffer-json": "^2.0.1",
"buffer-json": "^2.0.0", "buffer-json": "^2.0.0",
"fast-json-stable-stringify": "^2.1.0", "fast-json-stable-stringify": "^2.1.0",

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle'; import { tap, expect } from '@push.rocks/tapbundle';
import * as smartjson from '../ts/index.js'; import * as smartjson from '../ts/index.js';

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartjson', name: '@push.rocks/smartjson',
version: '5.0.6', version: '5.0.7',
description: 'typed json handlers' description: 'typed json handlers'
} }

View File

@ -1,5 +1,5 @@
// @pushrocks scope // @pushrocks scope
import * as smartstring from '@pushrocks/smartstring'; import * as smartstring from '@push.rocks/smartstring';
export { smartstring }; export { smartstring };