Skip to content

Commit

Permalink
fix: add file changes for interface revert
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsop-d committed Oct 30, 2024
1 parent 3f87c41 commit 8575f21
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ import { libFunc } from './lib';
Any import statements within this particular file will not be re-written.

## ROADMAP
- 0.1.20 Expose debugging options to the user (like printing which imports are being rewritten, or the transpiled output of a particular file).
- 0.1.21 Expose a jest reporter to print a high-level overview of what the plugin did within the run (and potientialy report barel file statistics)
- 0.1.22 Performance testing: Fork some open-source codebases, integrate `babel-jest-boost` and test to measure the performance increase. Do this in the CI/CD pipeline
- 0.1.23 Figure out automatic changelog, version increase, github release, npm publish actions
- 0.1.22 Expose debugging options to the user (like printing which imports are being rewritten, or the transpiled output of a particular file).
- 0.1.23 Expose a jest reporter to print a high-level overview of what the plugin did within the run (and potientialy report barel file statistics)
- 0.1.24 Performance testing: Fork some open-source codebases, integrate `babel-jest-boost` and test to measure the performance increase. Do this in the CI/CD pipeline
- 0.1.25 Figure out automatic changelog, version increase, github release, npm publish actions
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gtsopanoglou/babel-jest-boost",
"version": "0.1.20",
"version": "0.1.21",
"description": "Babel plugin to boost jest performance by skipping intermediate imports",
"scripts": {
"format:check": "prettier . --check",
Expand Down
4 changes: 2 additions & 2 deletions package/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const { createTransformer } = require("./transformer/index.js");
const plugin = require("./plugin/index.js");

module.exports = { createTransformer };
module.exports = plugin;

0 comments on commit 8575f21

Please sign in to comment.