From 9f347ca51f702f70b2de8b48dd104a5b8e55c381 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 21:38:11 +0100 Subject: [PATCH] [Utils] 0.1.0 Co-authored-by: github-actions[bot] --- .changeset/modern-kiwis-pay.md | 5 -- packages/utils/CHANGELOG.md | 7 +++ packages/utils/package.json | 84 +++++++++++++++++----------------- 3 files changed, 49 insertions(+), 47 deletions(-) delete mode 100644 .changeset/modern-kiwis-pay.md create mode 100644 packages/utils/CHANGELOG.md diff --git a/.changeset/modern-kiwis-pay.md b/.changeset/modern-kiwis-pay.md deleted file mode 100644 index d509bac..0000000 --- a/.changeset/modern-kiwis-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@putstack/utils': minor ---- - -First release of @putstack/utils - initially bringing the generatePath method. diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md new file mode 100644 index 0000000..123918d --- /dev/null +++ b/packages/utils/CHANGELOG.md @@ -0,0 +1,7 @@ +# @putstack/utils + +## 0.1.0 + +### Minor Changes + +- 9eeef80: First release of @putstack/utils - initially bringing the generatePath method. diff --git a/packages/utils/package.json b/packages/utils/package.json index 3a950f2..b6a86e5 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,42 +1,42 @@ -{ - "name": "@putstack/utils", - "version": "0.0.0", - "license": "MIT", - "author": "Putro", - "description": "Various utility functions I find myself recreating over and over again.", - "repository": "https://github.com/Pewtro/configs/tree/main/packages/utils", - "type": "module", - "engines": { - "node": ">=18 <19 || >=20" - }, - "main": "./dist/index.js", - "exports": { - "import": { - "types": "./dist/index.d.ts", - "default": "./dist/index.js" - }, - "require": { - "types": "./dist/index.d.cts", - "default": "./dist/index.cjs" - } - }, - "files": [ - "dist" - ], - "keywords": [ - "putro", - "putstack", - "utility", - "utils" - ], - "dependencies": {}, - "devDependencies": {}, - "peerDependencies": {}, - "scripts": { - "build": "tsup", - "debv": "tsup --watch", - "test": "vitest run", - "test:coverage": "pnpm test -- --coverage", - "test:watch": "vitest watch" - } -} +{ + "name": "@putstack/utils", + "version": "0.1.0", + "license": "MIT", + "author": "Putro", + "description": "Various utility functions I find myself recreating over and over again.", + "repository": "https://github.com/Pewtro/configs/tree/main/packages/utils", + "type": "module", + "engines": { + "node": ">=18 <19 || >=20" + }, + "main": "./dist/index.js", + "exports": { + "import": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + }, + "require": { + "types": "./dist/index.d.cts", + "default": "./dist/index.cjs" + } + }, + "files": [ + "dist" + ], + "keywords": [ + "putro", + "putstack", + "utility", + "utils" + ], + "dependencies": {}, + "devDependencies": {}, + "peerDependencies": {}, + "scripts": { + "build": "tsup", + "debv": "tsup --watch", + "test": "vitest run", + "test:coverage": "pnpm test -- --coverage", + "test:watch": "vitest watch" + } +}