File tree Expand file tree Collapse file tree 8 files changed +111
-109
lines changed Expand file tree Collapse file tree 8 files changed +111
-109
lines changed Original file line number Diff line number Diff line change 1- 20.5 .1
1+ 24.4 .1
Original file line number Diff line number Diff line change 1010 "@rollup/plugin-node-resolve" : " ^15.2.3" ,
1111 "@rollup/plugin-typescript" : " ^11.1.5" ,
1212 "@types/jest" : " ^29.5.0" ,
13- "@types/node" : " ^20.5.1 " ,
13+ "@types/node" : " ^24.3.0 " ,
1414 "@typescript-eslint/eslint-plugin" : " ^5.58.0" ,
1515 "@typescript-eslint/parser" : " ^5.58.0" ,
1616 "esbuild" : " ^0.17.16" ,
3333 },
3434 "packageManager" :
" [email protected] " ,
3535 "engines" : {
36- "node" : " 20.5 .1"
36+ "node" : " 24.4 .1"
3737 }
3838}
Original file line number Diff line number Diff line change 1+ import { readFileSync } from "fs" ;
12import { defineConfig } from "rollup" ;
23import { declarationsPlugin , jsPlugins } from "../../rollup.options" ;
3- import pkg from "./package.json" assert { type : "json" } ;
44
55const entrypoint = "src/index.ts" ;
6-
6+ const pkg = JSON . parse ( readFileSync ( "./package.json" , "utf-8" ) ) ;
77export default defineConfig ( [
88 {
99 input : entrypoint ,
Original file line number Diff line number Diff line change 1+ import { readFileSync } from "fs" ;
12import { defineConfig } from "rollup" ;
23import { declarationsPlugin , jsPlugins } from "../../rollup.options" ;
34
4- import pkg from "./package.json" assert { type : "json" } ;
5+ const pkg = JSON . parse ( readFileSync ( "./package.json" , "utf-8" ) ) ;
56const entrypoint = "src/index.ts" ;
67
78export default defineConfig ( [
Original file line number Diff line number Diff line change 11import { Bench } from "tinybench" ;
2- import { withCodSpeed } from ".." ;
2+ import { withCodSpeed } from "../src " ;
33import parsePr from "./parsePr" ;
44import { registerTimingBenchmarks } from "./timing" ;
55
Original file line number Diff line number Diff line change 1+ import { readFileSync } from "fs" ;
12import { defineConfig } from "rollup" ;
23import { declarationsPlugin , jsPlugins } from "../../rollup.options" ;
3- import pkg from "./package.json" assert { type : "json" } ;
44
55const entrypoint = "src/index.ts" ;
6-
6+ const pkg = JSON . parse ( readFileSync ( "./package.json" , "utf-8" ) ) ;
77export default defineConfig ( [
88 {
99 input : entrypoint ,
Original file line number Diff line number Diff line change 1+ import { readFileSync } from "fs" ;
12import { defineConfig } from "rollup" ;
23import { declarationsPlugin , jsPlugins } from "../../rollup.options" ;
3- import pkg from "./package.json" assert { type : "json" } ;
44
5+ const pkg = JSON . parse ( readFileSync ( "./package.json" , "utf-8" ) ) ;
56export default defineConfig ( [
67 {
78 input : "src/index.ts" ,
You can’t perform that action at this time.
0 commit comments