-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies + added some github actions + updated *.md
- Loading branch information
Alexandre Oger
committed
Oct 19, 2024
1 parent
2da058b
commit 74720ae
Showing
12 changed files
with
3,045 additions
and
5,970 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.0.55] - 2024-10-19 | ||
|
||
### Added | ||
|
||
- CI: added `Codecov` coverage reporting and build performance | ||
- Added a `CHANGELOG.md` | ||
- CI: added prepublishOnly | ||
|
||
### Changed | ||
|
||
- CI: changed `dependabot` schedule from `daily` to `weekly` | ||
- Updated dependencies | ||
- Enhanced the contributing section in `README.md` | ||
- Added more strict rules in `tsconfig.json` | ||
|
||
[0.0.55]: https://github.com/nielk/idonttrustlikethat-fast-check/releases/tag/v0.0.55 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
{ | ||
"name": "idonttrustlikethat-fast-check", | ||
"private": false, | ||
"version": "0.0.53", | ||
"version": "0.0.55", | ||
"type": "module", | ||
"description": "idonttrustlikethat-fast-check is a plugin designed for fast-check. It convert idonttrustlikethat validators to fast-check arbitraries. Allowing the possibility to use idtlt validators with fast-check.", | ||
"keywords": [ | ||
"idonttrustlikethat", | ||
"idtlt", | ||
"fast-check", | ||
"@fast-check", | ||
"plugin" | ||
"plugin", | ||
"validation", | ||
"testing", | ||
"property-based-testing", | ||
"typescript" | ||
], | ||
"author": "Alexandre Oger <[email protected]>", | ||
"engines": { | ||
|
@@ -37,51 +41,54 @@ | |
} | ||
}, | ||
"typings": "./dist/main.d.ts", | ||
"sideEffects": false, | ||
"license": "MIT", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && yarn format && yarn test && vite build", | ||
"build": "tsc && pnpm format && pnpm test && vite build", | ||
"build:watch": "tsc && vite build --watch", | ||
"lint": "./node_modules/.bin/eslint src test && yarn prettier . --check && oxlint -A all", | ||
"format": "./node_modules/.bin/eslint src test --fix && yarn prettier . --write && oxlint -A all --fix", | ||
"test": "vitest --run --typecheck", | ||
"lint": "./node_modules/.bin/eslint src test && pnpm prettier . --check && oxlint -A all", | ||
"format": "./node_modules/.bin/eslint src test --fix && pnpm prettier . --write && oxlint -A all --fix", | ||
"test": "vitest run --typecheck", | ||
"test:watch": "vitest --typecheck", | ||
"test:ui": "vitest --ui --typecheck", | ||
"test:ui": "vitest --ui --typecheck --coverage.enabled=true", | ||
"coverage": "vitest run --coverage", | ||
"update:deps": "pnpm up --latest -i", | ||
"prepublishOnly": "pnpm build", | ||
"knip": "knip" | ||
}, | ||
"peerDependencies": { | ||
"fast-check": ">3.15.0 latest", | ||
"idonttrustlikethat": ">2.1.0 latest" | ||
}, | ||
"devDependencies": { | ||
"@eslint/compat": "1.1.0", | ||
"@codecov/vite-plugin": "1.2.1", | ||
"@eslint/compat": "1.2.1", | ||
"@eslint/eslintrc": "3.1.0", | ||
"@eslint/js": "9.5.0", | ||
"@rollup/plugin-typescript": "11.1.6", | ||
"@eslint/js": "9.13.0", | ||
"@rollup/plugin-typescript": "12.1.1", | ||
"@types/eslint__js": "8.42.3", | ||
"@types/node": "20.14.8", | ||
"@typescript-eslint/eslint-plugin": "7.14.1", | ||
"@typescript-eslint/parser": "7.14.1", | ||
"@vitest/coverage-v8": "1.6.0", | ||
"@vitest/ui": "1.6.0", | ||
"eslint": "9.5.0", | ||
"@types/node": "22.7.7", | ||
"@typescript-eslint/eslint-plugin": "8.10.0", | ||
"@typescript-eslint/parser": "8.10.0", | ||
"@vitest/coverage-v8": "2.1.3", | ||
"@vitest/ui": "2.1.3", | ||
"eslint": "9.13.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"eslint-plugin-import": "2.29.1", | ||
"eslint-plugin-prettier": "5.1.3", | ||
"fast-check": "3.19.0", | ||
"globals": "15.6.0", | ||
"eslint-plugin-import": "2.31.0", | ||
"eslint-plugin-prettier": "5.2.1", | ||
"fast-check": "3.22.0", | ||
"globals": "15.11.0", | ||
"idonttrustlikethat": "2.1.2", | ||
"knip": "5.22.3", | ||
"oxlint": "0.4.4", | ||
"prettier": "3.3.2", | ||
"knip": "5.33.3", | ||
"oxlint": "0.10.0", | ||
"prettier": "3.3.3", | ||
"rollup-plugin-typescript-paths": "1.5.0", | ||
"tslib": "2.6.3", | ||
"typescript": "5.5.2", | ||
"typescript-eslint": "7.14.1", | ||
"vite": "5.3.1", | ||
"vitest": "1.6.0" | ||
"tslib": "2.8.0", | ||
"typescript": "5.6.3", | ||
"typescript-eslint": "8.10.0", | ||
"vite": "5.4.9", | ||
"vitest": "2.1.3" | ||
}, | ||
"resolutions": { | ||
"braces": ">=3.0.3" | ||
|
Oops, something went wrong.