-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructured file organization to be Deno compliant, i.e. use `mod.t…
…s` instead of `index.js`. The `package.json` file is still manually maintained.
- Loading branch information
1 parent
690ba6e
commit f630fa8
Showing
7 changed files
with
19 additions
and
12 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import Denodata from "./src/denodata.ts"; | ||
import operators from "./src/operators.ts"; | ||
import DONE from "./src/constants.js"; | ||
|
||
export {Denodata as default, Denodata as Denobase, Denodata, operators, 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,5 +1,5 @@ | ||
import { expect } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import {Denobase} from "./index.ts"; | ||
import Denodata from "./denodata.ts"; | ||
import {operators} from "./operators.ts"; | ||
const {$echoes} = operators; | ||
|
||
|
@@ -13,7 +13,7 @@ const test = async (deno) => { | |
} else { | ||
deno = Deno | ||
} | ||
const db = await Denobase(); | ||
const db = await Denodata(); | ||
const uuidv4 = () => crypto.randomUUID(); | ||
|
||
class Book { | ||
|
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
File renamed without changes.
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