-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- move jest to be a package level dep like eslint - make example excluded from monorepo setup - clean up some files
- Loading branch information
Showing
11 changed files
with
4,747 additions
and
3,062 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Examples | ||
|
||
This is where we keep examples as independent npm projects not managed along with the rest of the monorepo but instead individually. These are not to be published but perhaps they can serve as templates for a blaze-create command. | ||
|
||
## Adding an example | ||
|
||
Basically just create any javascript project within a directory in this folder. | ||
When adding/installing dependencies please use `pnpm` like so: | ||
|
||
```bash | ||
pnpm --ignore-workspace install @blaze-cardano/sdk | ||
``` | ||
|
||
> Note: `--ignore-workspace` is important to avoid the monorepo setup. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "send-lovelace", | ||
"version": "0.1.0", | ||
"description": "Send lovelace from one address to another", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"send": "node index.js" | ||
}, | ||
"dependencies": { | ||
"@blaze-cardano/sdk": "^0.0.1" | ||
} | ||
} |
Oops, something went wrong.