Skip to content

Commit

Permalink
🐛 with wiki
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfram77 committed May 10, 2023
1 parent f93e10e commit 0e4e090
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ xsortedArray.intersection(x, y);

## References

- [binarysearch - npm : Ryan Day](https://www.npmjs.com/package/binarysearch)
- [binary-sorted-array - npm : Michal Iwanow](https://www.npmjs.com/package/binary-sorted-array)
- [How to add region in java script file, visual studio](https://stackoverflow.com/a/51550649/1413259)

Expand Down
1 change: 1 addition & 0 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ function generateWiki(ds) {
for (var d of ds) {
var f = `wiki/${d.name}.md`;
if (!rkind.test(d.kind)) continue;
if (d.location.includes('node_modules')) continue; // Skip external
if (!fs.existsSync(f)) {
var txt = build.wikiMarkdown(d, {owner, repo, useWiki});
build.writeFileText(f, txt);
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "extra-sorted-array",
"version": "0.0.14",
"version": "0.0.15",
"description": "A sorted array is a collection of values, arranged in an order.",
"main": "index.js",
"module": "index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion wiki
Submodule wiki updated from 316e2b to eff4c4

0 comments on commit 0e4e090

Please sign in to comment.