Skip to content

Commit

Permalink
Fix concaveman error
Browse files Browse the repository at this point in the history
  • Loading branch information
kochizufan committed Aug 2, 2021
1 parent 875e482 commit 0159f73
Show file tree
Hide file tree
Showing 8 changed files with 1,974 additions and 54 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,7 @@ typings/

# JetBrain
.idea

# Open/Keep
.git.keep
.git.open
2 changes: 1 addition & 1 deletion es5/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion es5/index.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! @maplat/tin v0.9.0 | Kohei Otsuka, Code for History | license: Maplat Limited License 1.1 */
/*! @maplat/tin v0.9.1 | Kohei Otsuka, Code for History | license: Maplat Limited License 1.1 */

/**
* splaytree v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion es5/index.js.map

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable no-empty */
const gulp = require("gulp");
const fs = require("fs-extra");

gulp.task("git_keep", async () => {
fs.removeSync('.git');
fs.copySync('.git.keep', '.git');
});

gulp.task("git_open", async () => {
fs.removeSync('.git');
fs.copySync('.git.open', '.git');
});
Loading

0 comments on commit 0159f73

Please sign in to comment.