-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
adcee9d
commit 9f347ca
Showing
3 changed files
with
49 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @putstack/utils | ||
|
||
## 0.1.0 | ||
|
||
### Minor Changes | ||
|
||
- 9eeef80: First release of @putstack/utils - initially bringing the generatePath method. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} |