-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: this time it should work properly
- Loading branch information
Showing
24 changed files
with
5,226 additions
and
5,443 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Find and clean up TypeScript files in the 'dist' directory | ||
find dist -name '*.*' | while read -r file; do | ||
if [ -f "$file" ]; then | ||
# Replace four spaces with two spaces | ||
sed -i 's/ / /g' "$file" | ||
echo "Cleaned $file" | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.stressBenchmark = exports.insertionBenchmark = void 0; | ||
const insertion_bench_1 = require("./insertion.bench"); | ||
Object.defineProperty(exports, "insertionBenchmark", { enumerable: true, get: function() { return insertion_bench_1.insertionBenchmark; } }); | ||
const stress_bench_1 = require("./stress.bench"); | ||
Object.defineProperty(exports, "stressBenchmark", { enumerable: true, get: function() { return stress_bench_1.stressBenchmark; } }); | ||
var insertion_bench_1 = require("./insertion.bench"); | ||
Object.defineProperty(exports, "insertionBenchmark", { enumerable: true, get: function () { return insertion_bench_1.insertionBenchmark; } }); | ||
var stress_bench_1 = require("./stress.bench"); | ||
Object.defineProperty(exports, "stressBenchmark", { enumerable: true, get: function () { return stress_bench_1.stressBenchmark; } }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.