Skip to content

Commit 18a3022

Browse files
committed
chore(DataTable): revert changes
1 parent 914170f commit 18a3022

5 files changed

Lines changed: 4 additions & 228 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@
100100
"@tailwindcss/cli": "^4.1.18",
101101
"@tailwindcss/postcss": "^4.1.18",
102102
"@tailwindcss/vite": "^4.1.18",
103-
"@types/jest": "^30.0.0",
104103
"@types/mocha": "^10.0.6",
105104
"@typescript-eslint/eslint-plugin": "^5.59.0",
106105
"@typescript-eslint/parser": "^5.59.0",

pnpm-lock.yaml

Lines changed: 0 additions & 200 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rollup.test.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ import * as fs from "fs";
1010
function getFilesInDirectorySync(directoryPath) {
1111
try {
1212
const files = fs.readdirSync(directoryPath);
13-
const supportedTestExtensions = new Set([".js", ".ts"]);
1413
const result = files.map(file => {
1514
const filePath = path.join(directoryPath, file);
1615
const stats = fs.statSync(filePath);
17-
if (stats.isFile() && supportedTestExtensions.has(path.extname(filePath))) {
16+
if (stats.isFile()) {
1817
return filePath;
1918
}
2019
});

0 commit comments

Comments
 (0)