fix(core): update

This commit is contained in:
Philipp Kunz 2024-05-14 19:28:39 +02:00
parent b9805efa57
commit e8043c5734
8 changed files with 7375 additions and 724 deletions

View File

@ -1,2 +1,2 @@
require('@gitzone/tsrun'); require('@git.zone/tsrun');
require('spawn-wrap').runMain() require('spawn-wrap').runMain()

1420
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -22,17 +22,17 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartipc#README", "homepage": "https://gitlab.com/pushrocks/smartipc#README",
"dependencies": { "dependencies": {
"@pushrocks/smartpromise": "^3.0.2", "@push.rocks/smartpromise": "^4.0.3",
"spawn-wrap": "^2.0.0", "spawn-wrap": "^2.0.0",
"threads": "1.7.0", "threads": "1.7.0",
"tiny-worker": "^2.2.0" "tiny-worker": "^2.2.0"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.11", "@git.zone/tsbuild": "^2.1.11",
"@gitzone/tsrun": "^1.2.8", "@git.zone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.24", "@git.zone/tstest": "^1.0.24",
"@pushrocks/tapbundle": "^5.0.4", "@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.2" "@types/node": "^20.12.12"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

6651
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@push.rocks/tapbundle';
import * as smartspawn from '../ts/index.js'; import * as smartspawn from '../ts/index.js';
tap.test('should create a simple test function', async () => {}); tap.test('should create a simple test function', async () => {});
tap.start(); export default tap.start();

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/smartspawn', name: '@push.rocks/smartspawn',
version: '3.0.2', version: '3.0.3',
description: 'smart subprocess handling' description: 'A node module for smart subprocess handling with support for promises and streamlined subprocess communication.'
} }

View File

@ -1,5 +1,5 @@
import * as plugins from './smartspawn.plugins.js'; import * as plugins from './smartspawn.plugins.js';
import * as smartpromise from '@pushrocks/smartpromise'; import * as smartpromise from '@push.rocks/smartpromise';
import * as childProcess from 'child_process'; import * as childProcess from 'child_process';
export class ThreadSimple { export class ThreadSimple {

View File

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