Skip to content

Commit 7c06ba6

Browse files
authored
feat: support esm and cjs build (#28)
* Support esm and cjs build * Fix lint errors for ts module resolution * Fix benchmark loader for esm * Update doc script
1 parent 642b31e commit 7c06ba6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+230
-131
lines changed

.mocharc.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
require:
2-
- ts-node/register
1+
loader:
2+
- ts-node/esm
33
colors: true
44
timeout: 5000
55
exit: true

.prettierrc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
printWidth: 120,
33
tabWidth: 2,
44
useTabs: false,

bin/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env node
2+
3+
await import("../lib/esm/cli.js");

eslint.config.mjs eslint.config.js

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default ts.config(
3535
],
3636
"func-call-spacing": "error",
3737
"import/no-duplicates": "off",
38+
"import/no-unresolved": ["error", {commonjs: false}],
3839
"new-parens": "error",
3940
"no-caller": "error",
4041
"no-bitwise": "off",
@@ -58,6 +59,12 @@ export default ts.config(
5859
project: "./tsconfig.json",
5960
},
6061
},
62+
settings: {
63+
"import/resolver": {
64+
"typescript": {
65+
}
66+
}
67+
},
6168
},
6269
{
6370
files: ["**/test/**/*.ts"],

package.json

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
22
"name": "@dapplion/benchmark",
33
"version": "0.2.5",
4-
"main": "lib/index.js",
54
"repository": "[email protected]:dapplion/benchmark.git",
65
"author": "dapplion <[email protected]>",
76
"license": "MIT",
87
"bin": {
9-
"benchmark": "lib/cli.js"
8+
"benchmark": "./bin/index.js"
109
},
1110
"files": [
1211
"lib/**/*.d.ts",
@@ -15,25 +14,37 @@
1514
"*.d.ts",
1615
"*.js"
1716
],
17+
"type": "module",
18+
"main": "./lib/cjs/index.js",
19+
"module": "./lib/esm/index.js",
20+
"exports": {
21+
".": {
22+
"import": "./lib/esm/index.js",
23+
"require": "./lib/cjs/index.js"
24+
}
25+
},
1826
"scripts": {
19-
"build": "tsc -p tsconfig.build.json && chmod +x lib/cli.js",
27+
"build": "yarn build:esm && yarn build:cjs",
28+
"build:esm": "tsc -p tsconfig.build.esm.json && echo '{\"type\": \"module\"}' > ./lib/esm/package.json",
29+
"build:cjs": "tsc -p tsconfig.build.cjs.json && echo '{\"type\": \"commonjs\"}' > ./lib/cjs/package.json",
2030
"test:unit": "mocha test/unit/**/*.test.ts",
2131
"lint": "eslint --color src/ test/",
2232
"prepublishOnly": "yarn build",
23-
"benchmark": "node -r ts-node/register src/cli.ts 'test/perf/**/*.test.ts'",
24-
"writeDocs": "ts-node scripts/writeOptionsMd.ts"
33+
"benchmark": "node --loader ts-node/esm ./src/cli.ts 'test/perf/**/*.test.ts'",
34+
"writeDocs": "node --loader ts-node/esm scripts/writeOptionsMd.ts"
2535
},
2636
"devDependencies": {
2737
"@types/chai": "^4.2.19",
2838
"@types/mocha": "^10.0.9",
29-
"@types/node": "^15.12.4",
39+
"@types/node": "^18.15.3",
3040
"@types/rimraf": "^3.0.0",
3141
"@types/yargs": "^17.0.33",
3242
"chai": "^4.5.0",
3343
"dotenv": "^10.0.0",
3444
"eslint": "^9.15.0",
3545
"@eslint/js": "^9.15.0",
3646
"eslint-plugin-import": "^2.31.0",
47+
"eslint-import-resolver-typescript": "^3.6.3",
3748
"eslint-plugin-prettier": "^5.2.1",
3849
"eslint-config-prettier": "^9.1.0",
3950
"mocha": "^10.8.2",

scripts/writeOptionsMd.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {options} from "../src/options";
1+
import {options} from "../src/options.js";
22

33
const sections: string[] = [];
44

src/cli.ts

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
#!/usr/bin/env node
2-
31
// Must not use `* as yargs`, see https://github.com/yargs/yargs/issues/1131
42
import yargs from "yargs";
5-
import {loadOptions, handleRequires} from "./utils/mochaCliExports";
6-
import {options, optionsDefault} from "./options";
7-
import {run} from "./run";
8-
import {Opts} from "./types";
3+
import {loadOptions, handleRequires} from "./utils/mochaCliExports.js";
4+
import {options, optionsDefault} from "./options.js";
5+
import {run} from "./run.js";
6+
import {Opts} from "./types.js";
97

108
/**
119
* Common factory for running the CLI and running integration tests
@@ -15,7 +13,7 @@ const argv = process.argv.slice(2);
1513

1614
const args = loadOptions(argv);
1715

18-
void yargs
16+
void yargs()
1917
.env("BENCHMARK")
2018
.scriptName("benchmark")
2119
.command({

src/compare/compute.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ResultComparision, BenchmarkComparision, Benchmark, BenchmarkResult} from "../types";
1+
import {ResultComparision, BenchmarkComparision, Benchmark, BenchmarkResult} from "../types.js";
22

33
export function computeBenchComparision(
44
currBench: Benchmark,

src/compare/index.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as github from "@actions/github";
2-
import {Benchmark, Opts} from "../types";
3-
import {getGithubEventData, GithubActionsEventData, parseBranchFromRef, getDefaultBranch} from "../utils";
4-
import {isGaRun} from "../github/context";
5-
import {IHistoryProvider} from "../history/provider";
6-
import {validateBenchmark} from "../history/schema";
2+
import {Benchmark, Opts} from "../types.js";
3+
import {getGithubEventData, GithubActionsEventData, parseBranchFromRef, getDefaultBranch} from "../utils/index.js";
4+
import {isGaRun} from "../github/context.js";
5+
import {IHistoryProvider} from "../history/provider.js";
6+
import {validateBenchmark} from "../history/schema.js";
77

88
enum CompareWithType {
99
latestCommitInBranch = "latestCommitInBranch",

src/github/comment.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as github from "@actions/github";
2-
import {BenchmarkComparision} from "../types";
3-
import {commetToPrUpdatable, commentToCommit} from "./octokit";
4-
import {getGithubEventData, GithubActionsEventData, renderComment} from "../utils";
2+
import {BenchmarkComparision} from "../types.js";
3+
import {commetToPrUpdatable, commentToCommit} from "./octokit.js";
4+
import {getGithubEventData, GithubActionsEventData, renderComment} from "../utils/index.js";
55

66
export async function postGaComment(resultsComp: BenchmarkComparision): Promise<void> {
77
switch (github.context.eventName) {

src/github/octokit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {getContext} from "./context";
1+
import {getContext} from "./context.js";
22

33
const commentTag = "benchmarkbot/action";
44

src/history/append.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Benchmark, BenchmarkHistory, Opts} from "../types";
1+
import {Benchmark, BenchmarkHistory, Opts} from "../types.js";
22

33
export function appendBenchmarkToHistoryAndPrune(
44
history: BenchmarkHistory,

src/history/gaCache.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import fs from "fs";
1+
import fs from "node:fs";
22
import * as cache from "@actions/cache";
3-
import {Benchmark} from "../types";
4-
import {LocalHistoryProvider} from "./local";
5-
import {HistoryProviderType, IHistoryProvider} from "./provider";
3+
import {Benchmark} from "../types.js";
4+
import {LocalHistoryProvider} from "./local.js";
5+
import {HistoryProviderType, IHistoryProvider} from "./provider.js";
66

77
/**
88
* Persist results in CSV, one benchmark result per file

src/history/index.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import {Opts} from "../types";
2-
import {resolveHistoryLocation} from "./location";
3-
import {LocalHistoryProvider} from "./local";
4-
import {getGaCacheHistoryProvider} from "./gaCache";
5-
import {IHistoryProvider} from "./provider";
6-
import {optionsDefault} from "../options";
7-
import {S3HistoryProvider} from "./s3";
1+
import {Opts} from "../types.js";
2+
import {resolveHistoryLocation} from "./location.js";
3+
import {LocalHistoryProvider} from "./local.js";
4+
import {getGaCacheHistoryProvider} from "./gaCache.js";
5+
import {IHistoryProvider} from "./provider.js";
6+
import {optionsDefault} from "../options.js";
7+
import {S3HistoryProvider} from "./s3.js";
88
export {resolveHistoryLocation};
99

1010
export function getHistoryProvider(opts: Opts): IHistoryProvider {

src/history/local.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import fs from "fs";
2-
import path from "path";
3-
import {HistoryProviderType, IHistoryProvider} from "./provider";
4-
import {Benchmark, BenchmarkResults} from "../types";
5-
import {fromCsv, toCsv} from "../utils/file";
6-
import {FsError} from "../utils";
1+
import fs from "node:fs";
2+
import path from "node:path";
3+
import {HistoryProviderType, IHistoryProvider} from "./provider.js";
4+
import {Benchmark, BenchmarkResults} from "../types.js";
5+
import {fromCsv, toCsv} from "../utils/file.js";
6+
import {FsError} from "../utils/index.js";
77

88
const extension = ".csv";
99
const historyDir = "history";

src/history/location.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import {isGaRun} from "../github/context";
2-
import {Opts} from "../types";
3-
import {optionsDefault} from "../options";
1+
import {isGaRun} from "../github/context.js";
2+
import {Opts} from "../types.js";
3+
import {optionsDefault} from "../options.js";
44

55
export type HistoryLocation = {type: "local"; path: string} | {type: "ga-cache"; key: string};
66

src/history/provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Benchmark} from "../types";
1+
import {Benchmark} from "../types.js";
22

33
export enum HistoryProviderType {
44
Local = "Local",

src/history/s3.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import path from "path";
2-
import S3 from "aws-sdk/clients/s3";
3-
import {Benchmark, BenchmarkResults} from "../types";
4-
import {fromCsv, toCsv, extendError, AwsError} from "../utils";
5-
import {HistoryProviderType, IHistoryProvider} from "./provider";
1+
import path from "node:path";
2+
import S3 from "aws-sdk/clients/s3.js";
3+
import {Benchmark, BenchmarkResults} from "../types.js";
4+
import {fromCsv, toCsv, extendError, AwsError} from "../utils/index.js";
5+
import {HistoryProviderType, IHistoryProvider} from "./provider.js";
66

77
export type S3Config = Pick<S3.Types.ClientConfiguration, "accessKeyId" | "secretAccessKey" | "region" | "endpoint"> & {
88
Bucket: string;

src/history/schema.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Ajv from "ajv";
2-
import {BenchmarkHistory, Benchmark} from "../types";
2+
import {BenchmarkHistory, Benchmark} from "../types.js";
33

44
export const emptyBenchmarkHistory: BenchmarkHistory = {benchmarks: {}};
55

src/history/shouldPersist.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {Opts} from "../types";
2-
import {getDefaultBranch} from "../utils/defaultBranch";
1+
import {Opts} from "../types.js";
2+
import {getDefaultBranch} from "../utils/defaultBranch.js";
33

44
export async function resolveShouldPersist(opts: Opts, branch: string): Promise<boolean> {
55
// Force persist

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./mochaPlugin";
1+
export * from "./mochaPlugin/index.js";

src/mochaPlugin/index.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import fs from "fs";
2-
import path from "path";
3-
import {BenchmarkOpts} from "../types";
4-
import {optsByRootSuite, optsMap, resultsByRootSuite} from "./globalState";
5-
import {BenchmarkRunOptsWithFn, runBenchFn} from "./runBenchFn";
6-
import {getRootSuite, getParentSuite} from "./utils";
1+
import fs from "node:fs";
2+
import path from "node:path";
3+
import {BenchmarkOpts} from "../types.js";
4+
import {optsByRootSuite, optsMap, resultsByRootSuite} from "./globalState.js";
5+
import {BenchmarkRunOptsWithFn, runBenchFn} from "./runBenchFn.js";
6+
import {getRootSuite, getParentSuite} from "./utils.js";
77

88
type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
99

src/mochaPlugin/mochaRunner.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// eslint-disable-next-line import/no-extraneous-dependencies
22
import Mocha from "mocha";
3-
import {optsByRootSuite, resultsByRootSuite} from "./globalState";
4-
import {collectFiles, FileCollectionOptions} from "../utils/mochaCliExports";
5-
import {benchmarkReporterWithPrev} from "./reporter";
6-
import {Benchmark, BenchmarkOpts, BenchmarkResult, onlyBenchmarkOpts, Opts} from "../types";
3+
import {optsByRootSuite, resultsByRootSuite} from "./globalState.js";
4+
import {collectFiles, FileCollectionOptions} from "../utils/mochaCliExports.js";
5+
import {benchmarkReporterWithPrev} from "./reporter.js";
6+
import {Benchmark, BenchmarkOpts, BenchmarkResult, onlyBenchmarkOpts, Opts} from "../types.js";
77

88
export async function runMochaBenchmark(
99
opts: Opts & BenchmarkOpts,

src/mochaPlugin/reporter.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// eslint-disable-next-line import/no-extraneous-dependencies
22
import Mocha from "mocha";
3-
import {Benchmark, BenchmarkResult} from "../types";
4-
import {resultsByRootSuite} from "./globalState";
5-
import {formatResultRow} from "./format";
6-
import {getRootSuite} from "./utils";
3+
import {Benchmark, BenchmarkResult} from "../types.js";
4+
import {resultsByRootSuite} from "./globalState.js";
5+
import {formatResultRow} from "./format.js";
6+
import {getRootSuite} from "./utils.js";
77

88
const {
99
EVENT_RUN_BEGIN,

src/mochaPlugin/runBenchFn.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {BenchmarkResult, BenchmarkOpts} from "../types";
1+
import {BenchmarkResult, BenchmarkOpts} from "../types.js";
22

33
export type BenchmarkRunOpts = BenchmarkOpts & {
44
id: string;

src/options.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Options} from "yargs";
2-
import {Opts, BenchmarkOpts} from "./types";
3-
import {FileCollectionOptions} from "./utils/mochaCliExports";
2+
import {Opts, BenchmarkOpts} from "./types.js";
3+
import {FileCollectionOptions} from "./utils/mochaCliExports.js";
44

55
export const optionsDefault = {
66
threshold: 2,

src/run.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import * as github from "@actions/github";
2-
import {getHistoryProvider} from "./history";
3-
import {resolveShouldPersist} from "./history/shouldPersist";
4-
import {validateBenchmark} from "./history/schema";
5-
import {Benchmark, BenchmarkOpts, Opts} from "./types";
6-
import {renderCompareWith, resolveCompareWith, resolvePrevBenchmark} from "./compare";
7-
import {parseBranchFromRef, getCurrentCommitInfo, shell, getCurrentBranch} from "./utils";
8-
import {runMochaBenchmark} from "./mochaPlugin/mochaRunner";
9-
import {computeBenchComparision} from "./compare/compute";
10-
import {postGaComment} from "./github/comment";
11-
import {isGaRun} from "./github/context";
2+
import {getHistoryProvider} from "./history/index.js";
3+
import {resolveShouldPersist} from "./history/shouldPersist.js";
4+
import {validateBenchmark} from "./history/schema.js";
5+
import {Benchmark, BenchmarkOpts, Opts} from "./types.js";
6+
import {renderCompareWith, resolveCompareWith, resolvePrevBenchmark} from "./compare/index.js";
7+
import {parseBranchFromRef, getCurrentCommitInfo, shell, getCurrentBranch} from "./utils/index.js";
8+
import {runMochaBenchmark} from "./mochaPlugin/mochaRunner.js";
9+
import {computeBenchComparision} from "./compare/compute.js";
10+
import {postGaComment} from "./github/comment.js";
11+
import {isGaRun} from "./github/context.js";
1212

1313
/* eslint-disable no-console */
1414

src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {FileCollectionOptions} from "./utils/mochaCliExports";
1+
import {FileCollectionOptions} from "./utils/mochaCliExports.js";
22

33
export type Opts = Partial<FileCollectionOptions> & {
44
defaultBranch?: string;

src/utils/currentBranch.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as github from "@actions/github";
2-
import {getGithubEventData, GithubActionsEventData, parseBranchFromRef} from "../utils";
3-
import {isGaRun} from "../github/context";
4-
import {shell} from "./shell";
2+
import {getGithubEventData, GithubActionsEventData, parseBranchFromRef} from "../utils/index.js";
3+
import {isGaRun} from "../github/context.js";
4+
import {shell} from "./shell.js";
55

66
export async function getCurrentBranch(): Promise<string> {
77
if (isGaRun()) {

src/utils/defaultBranch.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import {isGaRun} from "../github/context";
2-
import {getGithubDefaultBranch} from "../github/octokit";
3-
import {Opts} from "../types";
4-
import {shell} from "./shell";
1+
import {isGaRun} from "../github/context.js";
2+
import {getGithubDefaultBranch} from "../github/octokit.js";
3+
import {Opts} from "../types.js";
4+
import {shell} from "./shell.js";
55

66
let defaultBranch: string | null = null;
77

src/utils/file.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import fs from "fs";
2-
import csvParse from "csv-parse/lib/sync";
3-
import csvStringify from "csv-stringify/lib/sync";
1+
import fs from "node:fs";
2+
import csvParse from "csv-parse/lib/sync.js";
3+
import csvStringify from "csv-stringify/lib/sync.js";
44

55
type CsvMetadata = Record<string, string>;
66
// eslint-disable-next-line @typescript-eslint/no-explicit-any

src/utils/gaContext.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fs from "fs";
1+
import fs from "node:fs";
22

33
/**
44
* Github actions store the event data payload at a JSON file with path

src/utils/git.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {shell} from "./shell";
1+
import {shell} from "./shell.js";
22

33
export async function getCurrentCommitInfo(): Promise<{
44
/** commit hash `71f08b12d45d44255c31f7b7d135bd15a93fdaac` */

0 commit comments

Comments
 (0)