-
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.
- Loading branch information
Showing
9 changed files
with
6,883 additions
and
3,834 deletions.
There are no files selected for viewing
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,5 @@ | ||
--- | ||
"type-assurer": minor | ||
--- | ||
|
||
chore: codebase update |
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,4 @@ | ||
/.yarn/** linguist-vendored | ||
/.yarn/releases/* binary | ||
/.yarn/plugins/**/* binary | ||
/.pnp.* binary linguist-generated |
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
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
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
Large diffs are not rendered by default.
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,6 @@ | ||
--- | ||
nodeLinker: node-modules | ||
yarnPath: .yarn/releases/yarn-3.6.1.cjs | ||
|
||
npmAuthToken: ${NODE_AUTH_TOKEN:-''} | ||
npmPublishRegistry: "https://registry.npmjs.org/" |
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,9 +1,14 @@ | ||
{ | ||
"name": "type-assurer", | ||
"version": "0.0.1", | ||
"description": "type-assurer: TypeScript library that provides shorthand type assertions and type guard functions for multiple types.", | ||
"description": "TypeScript library that provides shorthand type assertions and type guard functions for multiple types.", | ||
"keywords": [ | ||
"TypeScript", | ||
"type guard", | ||
"type assertion" | ||
], | ||
"repository": { | ||
"url": "git@github.com:hacomono-lib/type-assurer.git", | ||
"url": "https://github.com/hacomono-lib/type-assurer", | ||
"type": "git" | ||
}, | ||
"author": "mew-ton <[email protected]>", | ||
|
@@ -23,12 +28,11 @@ | |
"test:spec-d": "vitest typecheck --run", | ||
"test:type": "tsc --noEmit -p tsconfig.json", | ||
"lint": "eslint --ext .ts .", | ||
"format": "prettier --write . --ignore-path=.eslintignore", | ||
"dedup": "yarn-deduplicate --strategy fewer" | ||
"format": "prettier --write . --ignore-path=.eslintignore" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.26.2", | ||
"@changesets/changelog-github": "^0.4.8", | ||
"@changesets/cli": "^2.26.2", | ||
"@types/lodash": "^4.14.195", | ||
"@typescript-eslint/eslint-plugin": "^6.2.0", | ||
"@typescript-eslint/parser": "^6.2.0", | ||
|
@@ -40,7 +44,6 @@ | |
"tsup": "^7.1.0", | ||
"typescript": "^5.1.6", | ||
"vitest": "^0.32.2", | ||
"yarn-deduplicate": "^6.0.2", | ||
"yarn-run-all": "latest" | ||
}, | ||
"peerDependencies": { | ||
|
@@ -50,5 +53,10 @@ | |
"typescript": { | ||
"optional": true | ||
} | ||
}, | ||
"packageManager": "[email protected]", | ||
"volta": { | ||
"node": "18.17.0", | ||
"yarn": "3.6.1" | ||
} | ||
} |
Oops, something went wrong.