Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
BenceSzalai committed Aug 21, 2023
1 parent 524337c commit a8f8208
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
19 changes: 15 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [29.0.0] - 2023-08-21
### Added
## [29.0.0-rc.1] - 2023-08-22
### Fix
- Typings were not exported properly so using `skip()` and `skipIf()` gave errors in TypeScript tests.

### Docs
- Improved `README.md` configuration section.


## [29.0.0-rc.0] - 2023-08-21
### Initial
- Initial release (Version numbering started at 29 to keep in sync with Jest main.)

[Unreleased]: https://github.com/BenceSzalai/vue-components-ide-helper/compare/29.0.0...HEAD
[29.0.0]: https://github.com/BenceSzalai/vue-components-ide-helper/releases/tag/29.0.0


[Unreleased]: https://github.com/BenceSzalai/vue-components-ide-helper/compare/29.0.0-rc.1...HEAD
[29.0.0-rc.1]: https://github.com/BenceSzalai/vue-components-ide-helper/compare/29.0.0-rc.0...29.0.0-rc.1
[29.0.0-rc.0]: https://github.com/BenceSzalai/vue-components-ide-helper/releases/tag/29.0.0-rc.0
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ Specify the environment as a CLI argument for the Jest command:
`jest --env=@sbnc/jest-skip/node`


#### In "package.json"
#### In `package.json`

Add the following to your `package.json` file to configure for all tests:

```json
{
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sbnc/jest-skip",
"version": "29.0.0-rc.0",
"version": "29.0.0-rc.1",
"description": "Jest environment and test utilities to conditionally skip tests.",
"repository": {
"type": "git",
Expand Down Expand Up @@ -42,14 +42,17 @@
},
"exports": {
"./node": {
"require": "./dist/cjs/node-environment.js"
"require": "./dist/cjs/node-environment.js",
"types": "./dist/cjs/node-environment.d.ts"
},
"./jsdom": {
"require": "./dist/cjs/jsdom-environment.js"
"require": "./dist/cjs/jsdom-environment.js",
"types": "./dist/cjs/jsdom-environment.d.ts"
},
".": {
"import": "./dist/esm/utilities.mjs",
"require": "./dist/cjs/utilities.js"
"require": "./dist/cjs/utilities.js",
"types": "./dist/esm/utilities.d.ts"
}
}
}

0 comments on commit a8f8208

Please sign in to comment.