lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit 8b277e713899b4be0f884cf8f90e2d4f8c1d57e3
parent bdba8bca49f65a7a822da250460884caf57efa28
Author: triesap <tyson@radroots.org>
Date:   Thu, 19 Feb 2026 21:08:31 +0000

build: rename `radroots-types` bindings package to @radroots/types

Diffstat:
Mpnpm-lock.yaml | 2+-
Mtangle-db-schema/bindings/ts/package.json | 4++--
Mtangle-db-schema/bindings/ts/src/types.ts | 2+-
Mtypes/bindings/ts/package.json | 2+-
4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml @@ -70,7 +70,7 @@ importers: tangle-db-schema/bindings/ts: dependencies: - '@radroots/types-bindings': + '@radroots/types': specifier: workspace:* version: link:../../../types/bindings/ts devDependencies: diff --git a/tangle-db-schema/bindings/ts/package.json b/tangle-db-schema/bindings/ts/package.json @@ -23,7 +23,7 @@ "build:cjs": "tsc -p tsconfig.cjs.json", "build": "npm run build:esm && npm run build:cjs", "prebuild": "npm run clean && npm run prepend-imports", - "prepend-imports": "bash -c 'f=./src/types.ts; line=\"import type { IResult, IResultList, IResultPass } from \\\"@radroots/types-bindings\\\";\"; grep -qxF \"$line\" \"$f\" || (echo -e \"$line\\n\\n$(cat $f)\" > \"$f\")'", + "prepend-imports": "bash -c 'f=./src/types.ts; line=\"import type { IResult, IResultList, IResultPass } from \\\"@radroots/types\\\";\"; grep -qxF \"$line\" \"$f\" || (echo -e \"$line\\n\\n$(cat $f)\" > \"$f\")'", "clean": "rimraf dist", "dev": "npm run watch", "watch": "tsc -w" @@ -33,7 +33,7 @@ "rimraf": "^6.0.1" }, "dependencies": { - "@radroots/types-bindings": "workspace:*" + "@radroots/types": "workspace:*" }, "publishConfig": { "access": "public" diff --git a/tangle-db-schema/bindings/ts/src/types.ts b/tangle-db-schema/bindings/ts/src/types.ts @@ -1,4 +1,4 @@ -import type { IResult, IResultList, IResultPass } from "@radroots/types-bindings"; +import type { IResult, IResultList, IResultPass } from "@radroots/types"; // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. diff --git a/types/bindings/ts/package.json b/types/bindings/ts/package.json @@ -1,5 +1,5 @@ { - "name": "@radroots/types-bindings", + "name": "@radroots/types", "version": "1.0.0", "private": true, "license": "AGPLv3",