fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-12 11:27:46 +02:00
parent 41eed6423d
commit 4ea42cb9fb
8 changed files with 4875 additions and 11074 deletions

View File

@ -7,10 +7,10 @@
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "pushrocks", "gitscope": "push.rocks",
"gitrepo": "smartstream", "gitrepo": "smartstream",
"description": "simplifies access to node streams", "description": "simplifies access to node streams",
"npmPackagename": "@pushrocks/smartstream", "npmPackagename": "@push.rocks/smartstream",
"license": "MIT" "license": "MIT"
} }
} }

11052
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
{ {
"name": "@pushrocks/smartstream", "name": "@push.rocks/smartstream",
"version": "2.0.3", "version": "2.0.3",
"private": false, "private": false,
"description": "simplifies access to node streams", "description": "simplifies access to node streams",
@ -21,18 +21,17 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartstream#README", "homepage": "https://gitlab.com/pushrocks/smartstream#README",
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.63", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tstest": "^1.0.71", "@gitzone/tsrun": "^1.2.42",
"@pushrocks/smartfile": "^10.0.0", "@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.3", "@push.rocks/smartfile": "^10.0.28",
"tslint": "^6.1.3", "@push.rocks/tapbundle": "^5.0.3"
"tslint-config-prettier": "^1.18.0"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartpromise": "^3.1.7", "@push.rocks/smartpromise": "^4.0.3",
"@pushrocks/smartrx": "^2.0.25", "@push.rocks/smartrx": "^3.0.3",
"@types/from2": "^2.3.1", "@types/from2": "^2.3.2",
"@types/through2": "^2.0.36", "@types/through2": "^2.0.38",
"from2": "^2.3.0", "from2": "^2.3.0",
"through2": "^4.0.2" "through2": "^4.0.2"
}, },
@ -51,4 +50,4 @@
"npmextra.json", "npmextra.json",
"readme.md" "readme.md"
] ]
} }

4854
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -1,5 +1,5 @@
import * as smartfile from '@pushrocks/smartfile'; import * as smartfile from '@push.rocks/smartfile';
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@push.rocks/tapbundle';
import * as smartstream from '../ts/smartstream.classes.streamwrapper.js'; import * as smartstream from '../ts/smartstream.classes.streamwrapper.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/smartstream', name: '@push.rocks/smartstream',
version: '2.0.3', version: '2.0.4',
description: 'simplifies access to node streams' description: 'simplifies access to node streams'
} }

View File

@ -4,8 +4,8 @@ import * as stream from 'stream';
export { stream }; export { stream };
// pushrocks scope // pushrocks scope
import * as smartpromise from '@pushrocks/smartpromise'; import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@pushrocks/smartrx'; import * as smartrx from '@push.rocks/smartrx';
export { smartpromise, smartrx }; export { smartpromise, smartrx };