-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated build process, message signatures
- Loading branch information
1 parent
b3bc45a
commit c900219
Showing
18 changed files
with
529 additions
and
14,260 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
*.log | ||
.DS_Store | ||
.vscode | ||
node_modules | ||
dist | ||
.vscode |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,2 @@ | ||
import Urbit from './dist'; | ||
export { Urbit as default, Urbit }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 +1,4 @@ | ||
import Urbit from '../urbit'; | ||
import Urbit from '..'; | ||
|
||
export interface UrbitAppInterface { | ||
airlock: Urbit; | ||
|
This file was deleted.
Oops, something went wrong.
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,3 +1,3 @@ | ||
import Urbit from '../../dist/browser'; | ||
// import Urbit from '../../dist/browser'; | ||
|
||
window.Urbit = Urbit; | ||
// window.Urbit = Urbit; |
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,14 +1,14 @@ | ||
import Urbit from '../../dist/index'; | ||
// import Urbit from '../../dist/index'; | ||
|
||
async function blastOff() { | ||
const airlock = await Urbit.authenticate({ | ||
ship: 'zod', | ||
url: 'localhost:8080', | ||
code: 'lidlut-tabwed-pillex-ridrup', | ||
verbose: true | ||
}); | ||
// async function blastOff() { | ||
// const airlock = await Urbit.authenticate({ | ||
// ship: 'zod', | ||
// url: 'localhost:8080', | ||
// code: 'lidlut-tabwed-pillex-ridrup', | ||
// verbose: true | ||
// }); | ||
|
||
airlock.subscribe('chat-view', '/primary'); | ||
} | ||
// airlock.subscribe('chat-view', '/primary'); | ||
// } | ||
|
||
blastOff(); | ||
// blastOff(); |
Oops, something went wrong.