Compare commits

...

4 Commits

Author SHA1 Message Date
775a307056 6.0.3 2023-07-12 10:07:36 +02:00
4aa7621401 fix(core): update 2023-07-12 10:07:35 +02:00
b7ac5cb864 switch to new org scheme 2023-07-11 00:00:55 +02:00
f580281ccd switch to new org scheme 2023-07-10 02:41:33 +02:00
5 changed files with 1471 additions and 1765 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": "lik", "gitrepo": "lik",
"description": "light little helpers for node", "description": "light little helpers for node",
"npmPackagename": "@pushrocks/lik", "npmPackagename": "@push.rocks/lik",
"license": "MIT" "license": "MIT"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/lik", "name": "@push.rocks/lik",
"version": "6.0.2", "version": "6.0.3",
"private": false, "private": false,
"description": "light little helpers for node", "description": "light little helpers for node",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -30,11 +30,11 @@
"@types/node": "^18.11.18" "@types/node": "^18.11.18"
}, },
"dependencies": { "dependencies": {
"@pushrocks/smartdelay": "^2.0.13", "@push.rocks/smartdelay": "^3.0.2",
"@pushrocks/smartmatch": "^2.0.0", "@push.rocks/smartmatch": "^2.0.0",
"@pushrocks/smartpromise": "^3.1.7", "@push.rocks/smartpromise": "^4.0.3",
"@pushrocks/smartrx": "^3.0.0", "@push.rocks/smartrx": "^3.0.0",
"@pushrocks/smarttime": "^4.0.1", "@push.rocks/smarttime": "^4.0.1",
"@types/minimatch": "^5.1.2", "@types/minimatch": "^5.1.2",
"@types/symbol-tree": "^3.2.2", "@types/symbol-tree": "^3.2.2",
"symbol-tree": "^3.2.4" "symbol-tree": "^3.2.4"

3204
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/lik', name: '@push.rocks/lik',
version: '6.0.2', version: '6.0.3',
description: 'light little helpers for node' description: 'light little helpers for node'
} }

View File

@ -1,11 +1,11 @@
// ============== // ==============
// @pushrocks // @pushrocks
// ============== // ==============
import * as smartdelay from '@pushrocks/smartdelay'; import * as smartdelay from '@push.rocks/smartdelay';
import * as smartmatch from '@pushrocks/smartmatch'; import * as smartmatch from '@push.rocks/smartmatch';
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';
import * as smarttime from '@pushrocks/smarttime'; import * as smarttime from '@push.rocks/smarttime';
export { smartdelay, smartmatch, smartpromise, smartrx, smarttime }; export { smartdelay, smartmatch, smartpromise, smartrx, smarttime };