Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Publish 0.1.1 with README and repo link
Browse files Browse the repository at this point in the history
  • Loading branch information
ramosbugs committed May 22, 2022
1 parent a6aaa6e commit 49016c1
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ nodeLinker: node-modules

# By default, publish packages privately to GitHub for internal testing instead of to NPM.
npmScopes:
unflakable:
unflakable-private:
npmPublishRegistry: https://npm.pkg.github.com
npmPublishAccess: restricted
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"lint": "eslint packages/**/src/*.{ts,js} scripts/**/*.{ts,js}",
"prettier": "prettier --write packages/**/src/*.{ts,js}",
"prettier:check": "prettier --check packages/**/src/*.{ts,js}",
"publish:private": "yarn workspace @unflakable/js-api npm publish && yarn workspace @unflakable/jest-plugin npm publish",
"publish": "yarn workspace @unflakable/js-api npm publish --access public && yarn workspace @unflakable/jest-plugin npm publish --access public",
"set-jest-version": "ts-node scripts/set-jest-version.ts"
},
"workspaces": [
Expand Down
34 changes: 34 additions & 0 deletions packages/jest-plugin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<p align="center">
<a href="https://unflakable.com" target="_blank" rel="noopener" align="center">
<img src="https://github.com/unflakable/unflakable-javascript/blob/main/images/logo.svg?raw=true" width="350" alt="Unflakable" />
</a>
</p>

[![npm version](https://img.shields.io/npm/v/@unflakable/jest-plugin.svg)](https://www.npmjs.com/package/@unflakable/jest-plugin)
[![Twitter Follow](https://img.shields.io/twitter/url?label=%40unflakable&style=social&url=https%3A%2F%2Ftwitter.com%2Fintent%2Ffollow%3Fscreen_name%3Dunflakable)](https://twitter.com/intent/follow?screen_name=unflakable)

# Unflakable Plugin for Jest

This Unflakable plugin enables users of the [Jest](https://jestjs.io) JavaScript test framework
to quarantine flaky tests and track test results.

Refer to the [Jest Plugin](https://docs.unflakable.com/plugins/jest) documentation for
complete usage instructions.

### Compatibility

This plugin maintains compatibility with the Jest and Node.js versions listed below:

[![27.0.0+](https://img.shields.io/badge/Jest-27.0.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square)](#)
[![26.0.0+](https://img.shields.io/badge/Jest-26.0.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square)](#)
[![25.1.0+](https://img.shields.io/badge/Jest-25.1.0%2B-C21325?logo=jest&labelColor=white&logoColor=C21325&style=flat-square)](#)
<br/>
[![18](https://img.shields.io/badge/Node.js-18-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square)](#)
[![16](https://img.shields.io/badge/Node.js-16-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square)](#)
[![14](https://img.shields.io/badge/Node.js-14-339933?logo=node.js&labelColor=white&logoColor=339933&style=flat-square)](#)

## Contributing

To report a bug or request a new feature, please
[file a GitHub issue](https://github.com/unflakable/unflakable-javascript/issues).
We also welcome pull requests!
8 changes: 6 additions & 2 deletions packages/jest-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"name": "@unflakable/jest-plugin",
"description": "Jest plugin for Unflakable",
"repository": "https://github.com/unflakable/unflakable-javascript",
"repository": {
"type": "git",
"url": "https://github.com/unflakable/unflakable-javascript.git"
},
"bugs": "https://github.com/unflakable/unflakable-javascript/issues",
"homepage": "https://unflakable.com",
"license": "MIT",
"version": "0.1.0",
"version": "0.1.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand All @@ -14,6 +17,7 @@
"./package.json": "./package.json"
},
"files": [
"README.md",
"dist/**/*.js",
"dist/**/*.d.ts"
],
Expand Down
18 changes: 18 additions & 0 deletions packages/js-api/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<p align="center">
<a href="https://unflakable.com" target="_blank" rel="noopener" align="center">
<img src="https://github.com/unflakable/unflakable-javascript/blob/main/images/logo.svg?raw=true" width="350" alt="Unflakable" />
</a>
</p>

[![npm version](https://img.shields.io/npm/v/@unflakable/js-api.svg)](https://www.npmjs.com/package/@unflakable/js-api)
[![Twitter Follow](https://img.shields.io/twitter/url?label=%40unflakable&style=social&url=https%3A%2F%2Ftwitter.com%2Fintent%2Ffollow%3Fscreen_name%3Dunflakable)](https://twitter.com/intent/follow?screen_name=unflakable)

# Unflakable JavaScript API

This package is used by the Unflakable JavaScript plugins to communicate with the Unflakable API.

## Contributing

To report a bug or request a new feature, please
[file a GitHub issue](https://github.com/unflakable/unflakable-javascript/issues).
We also welcome pull requests!
8 changes: 6 additions & 2 deletions packages/js-api/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"name": "@unflakable/js-api",
"description": "JavaScript API for Unflakable",
"repository": "https://github.com/unflakable/unflakable-javascript",
"repository": {
"type": "git",
"url": "https://github.com/unflakable/unflakable-javascript.git"
},
"bugs": "https://github.com/unflakable/unflakable-javascript/issues",
"homepage": "https://unflakable.com",
"license": "MIT",
"version": "0.1.0",
"version": "0.1.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"dist/**/*.js",
"dist/**/*.d.ts"
],
Expand Down

0 comments on commit 49016c1

Please sign in to comment.