Skip to content

hyperweb-io/hyperweb-build

Repository files navigation

Hyperweb Build Tools


Hyperweb is a collection of powerful tools designed to simplify and streamline your development process for web and TypeScript projects.

Packages

This monorepo contains the following packages:

npm version

HyperwebJS is a library for working with the Hyperweb blockchain.

Installation

npm install hyperwebjs

Read more about @hyperweb/ts-json-schema

npm version

Hyperweb Build is a powerful wrapper around esbuild, designed to simplify and streamline your build process for Hyperweb projects.

Installation

npm install @hyperweb/build

Read more about @hyperweb/build

npm version

Hyperweb TS JSON Schema is a powerful wrapper around ts-json-schema-generator, designed to simplify the process of generating JSON schemas from TypeScript files in Hyperweb projects.

Installation

npm install @hyperweb/ts-json-schema

Read more about @hyperweb/ts-json-schema

Development

This section explains how to set up the project for development and how to run tests.

Project Setup

To bootstrap the project, run the following commands from the root of the monorepo:

yarn 
yarn build
yarn symlink

This will install dependencies, build all packages, and create symlinks between them.

Initialize Submodules

Before proceeding, make sure to initialize and update the submodules:

git submodule update --init --recursive

This command will initialize and fetch the submodules defined in the project.

Running Tests

To run tests for a specific package, navigate to the package directory and use the test:watch script. For example, to run tests for @hyperweb/build:

cd ./packages/build
yarn test:watch

This command leverages Jest's watch mode, which provides a convenient interface for running tests.

Jest Watch Mode

Jest watch mode offers several useful hotkeys to control test execution:

  • a - Run all tests
  • f - Run only failed tests
  • p - Filter by a filename regex pattern
  • t - Filter by a test name regex pattern
  • q - Quit watch mode
  • Enter - Trigger a test run

Here are some examples of how to use these hotkeys:

  1. Press p, then type utils to run tests only in files with "utils" in their name.
  2. Press t, then type should calculate to run only tests with "should calculate" in their description.
  3. Press a to run all tests again after filtering.

These hotkeys make it easy to focus on specific tests or files during development.

Workflow Tips

  1. Keep the test runner in watch mode while you're developing. This provides instant feedback as you make changes.
  2. Use the p and t filters to focus on the specific area you're working on. This can significantly speed up the test-debug cycle.
  3. Remember to run all tests (a) before committing changes to ensure you haven't inadvertently broken anything elsewhere in the package.

License

Hyperweb Build is MIT licensed.

About

Build tools for hyperweb

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •