Skip to content

Commit

Permalink
Merge pull request #9 from earthstar-project/encryption-support
Browse files Browse the repository at this point in the history
Encryption support: string-of-string paths, Areas, and utilities
  • Loading branch information
sgwilym authored Feb 6, 2024
2 parents 168b4c1 + 830984f commit 3b5ece7
Show file tree
Hide file tree
Showing 38 changed files with 1,594 additions and 3,060 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
deno-version: ["1.37.1"]
deno-version: ["1.40.3"]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions .nova/Configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"\/Users\/gwil\/Projects\/willow-js\/debug"
],
"co.gwil.deno.config.enableLinting" : "true",
"co.gwil.deno.config.enableUnstable" : "true",
"co.gwil.deno.config.enableUnstable" : true,
"deno.disablePaths" : [
"dist"
]
],
"deno.unstable" : true
}
3 changes: 2 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"tasks": {
"test": "deno test --unstable src",
"test": "deno test --unstable-kv src",
"test-watch": "deno test --unstable-kv src --watch",
"bundle": "deno run --allow-all scripts/build_web_bundle.ts"
},
"lock": false,
Expand Down
3 changes: 2 additions & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * as Products from "https://deno.land/x/willow_3d_products@0.1.0/mod.ts";
export * from "https://deno.land/x/willow_utils@0.2.0/mod.ts";

export { deferred } from "https://deno.land/std@0.202.0/async/deferred.ts";
export { concat } from "https://deno.land/std@0.202.0/bytes/concat.ts";
export { equals as equalsBytes } from "https://deno.land/std@0.202.0/bytes/equals.ts";
Expand Down
3 changes: 0 additions & 3 deletions mod.universal.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
export * from "./src/entries/types.ts";
export * from "./src/entries/encode_decode.ts";

export * from "./src/replica/types.ts";
export * from "./src/replica/replica.ts";

Expand Down
100 changes: 0 additions & 100 deletions src/entries/encode_decode.test.ts

This file was deleted.

159 changes: 0 additions & 159 deletions src/entries/encode_decode.ts

This file was deleted.

22 changes: 0 additions & 22 deletions src/entries/types.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/replica/events.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Entry } from "../entries/types.ts";
import { Entry } from "../../deps.ts";
import { Payload } from "./types.ts";

export class EntryPayloadSetEvent<
Expand Down
Loading

0 comments on commit 3b5ece7

Please sign in to comment.