|
90 | 90 | "clean": "rm -rf lib/* deno/lib/*",
|
91 | 91 | "build": "yarn run clean && npm run build:cjs && npm run build:esm && npm run build:deno",
|
92 | 92 | "build:deno": "node ./deno-build.mjs && cp ./README.md ./deno/lib",
|
93 |
| - "build:esm": "rollup --config rollup.config.js", |
94 |
| - "build:cjs": "tsc -p tsconfig.cjs.json", |
95 |
| - "build:types": "tsc -p tsconfig.types.json", |
96 |
| - "build:test": "tsc -p tsconfig.test.json", |
97 |
| - "rollup": "rollup --config rollup.config.js", |
98 |
| - "test:watch": "jest --watch", |
| 93 | + "build:esm": "rollup --config ./configs/rollup.config.js", |
| 94 | + "build:cjs": "tsc -p ./configs/tsconfig.cjs.json", |
| 95 | + "build:types": "tsc -p ./configs/tsconfig.types.json", |
| 96 | + "build:test": "tsc -p ./configs/tsconfig.test.json", |
| 97 | + "test:watch": "yarn test:ts-jest --watch", |
99 | 98 | "test": "yarn test:ts-jest",
|
100 |
| - "test:babel": "jest --coverage", |
| 99 | + "test:babel": "jest --coverage --config ./configs/babel-jest.config.json", |
101 | 100 | "test:bun": "bun test",
|
102 |
| - "test:vitest": "npx vitest --no-isolate", |
103 |
| - "test:ts-jest": "npx jest --config ./ts-jest.config.json", |
104 |
| - "test:swc": "npx jest --config ./swc-jest.config.json", |
| 101 | + "test:vitest": "npx vitest --config ./configs/vitest.config.ts", |
| 102 | + "test:ts-jest": "npx jest --config ./configs/ts-jest.config.json", |
| 103 | + "test:swc": "npx jest --config ./configs/swc-jest.config.json", |
105 | 104 | "test:deno": "cd deno && deno test",
|
106 | 105 | "prepublishOnly": "npm run test && npm run build && npm run build:deno",
|
107 | 106 | "play": "nodemon -e ts -w . -x tsx playground.ts",
|
|
0 commit comments