fix(core): update

This commit is contained in:
Philipp Kunz 2023-07-27 13:59:21 +02:00
parent a8bbec3c17
commit 8030851d2e
6 changed files with 573 additions and 390 deletions

View File

@ -16,19 +16,18 @@
"devDependencies": {
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.3"
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.5"
},
"dependencies": {
"@adobe/fetch": "^4.0.13",
"@apiglobal/typedserver": "^2.0.65",
"@pushrocks/smartdelay": "^3.0.1",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartjson": "^5.0.6",
"@pushrocks/smartpromise": "^4.0.2",
"@pushrocks/webstore": "^2.0.8"
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5",
"@push.rocks/smartjson": "^5.0.6",
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/webstore": "^2.0.8"
},
"files": [
"ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { expect, tap } from '@pushrocks/tapbundle';
import { expect, tap } from '@push.rocks/tapbundle';
import * as webrequest from '../ts/index.js';
tap.test('should run multiendpoint request', async (tools) => {

View File

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/webrequest',
version: '3.0.30',
version: '3.0.31',
description: 'securely request from browsers'
}

View File

@ -1,7 +1,7 @@
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartenv from '@pushrocks/smartenv';
import * as smartjson from '@pushrocks/smartjson';
import * as smartpromise from '@pushrocks/smartpromise';
import * as webstore from '@pushrocks/webstore';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartenv from '@push.rocks/smartenv';
import * as smartjson from '@push.rocks/smartjson';
import * as smartpromise from '@push.rocks/smartpromise';
import * as webstore from '@push.rocks/webstore';
export { smartdelay, smartenv, smartjson, smartpromise, webstore };