Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 0 additions & 50 deletions CHANGELOG.md

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

Use an Agent to interact with the Internet Computer from your JavaScript program.

This source code repository contains multiple npm packages, and [lerna](https://lerna.js.org/) provides tools for managing the monorepo. Currently we use lerna in ['fixed' mode](https://github.com/lerna/lerna#fixedlocked-mode-default), which means all packages are the same version. This may change in the future.
This source code repository contains multiple npm packages, but it's primary export is at `./packages/agent`.

## Development

### Getting Started

1. Clone the git repository.
2. Run `npm install`
* The npm postinstall script should automatically call `lerna bootstrap`, which will install/link all subpackages.

After that, you probably want to dive into a specific package in [./packages](./packages).

Expand Down
13 changes: 13 additions & 0 deletions bin/build
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

# exit on error
set -e

for package in ./packages/*
do
(
echo "building package: $package"
cd "$package"
npm install
)
done
13 changes: 13 additions & 0 deletions bin/test
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/sh

# exit on error
set -e

for package in ./packages/*
do
(
echo "testing package: $package"
cd "$package"
npm test
)
done
12 changes: 0 additions & 12 deletions lerna.json

This file was deleted.

Loading