Skip to content

Commit 0159f73

Browse files
committed
Fix concaveman error
1 parent 875e482 commit 0159f73

File tree

8 files changed

+1974
-54
lines changed

8 files changed

+1974
-54
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,7 @@ typings/
6262

6363
# JetBrain
6464
.idea
65+
66+
# Open/Keep
67+
.git.keep
68+
.git.open

es5/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

es5/index.js.LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! @maplat/tin v0.9.0 | Kohei Otsuka, Code for History | license: Maplat Limited License 1.1 */
1+
/*! @maplat/tin v0.9.1 | Kohei Otsuka, Code for History | license: Maplat Limited License 1.1 */
22

33
/**
44
* splaytree v3.1.0

es5/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* eslint-disable @typescript-eslint/no-var-requires */
2+
/* eslint-disable no-empty */
3+
const gulp = require("gulp");
4+
const fs = require("fs-extra");
5+
6+
gulp.task("git_keep", async () => {
7+
fs.removeSync('.git');
8+
fs.copySync('.git.keep', '.git');
9+
});
10+
11+
gulp.task("git_open", async () => {
12+
fs.removeSync('.git');
13+
fs.copySync('.git.open', '.git');
14+
});

0 commit comments

Comments
 (0)