pulumi/lib
Luke Hoban e663b90ce7 Make concurrent AWS test runs safer
Instead of cleaning up all resources that might have been
created by the test suite, we now only cleanup resources
created by this specific run of the tests.  That makes
concurrent test execution safer, and the tests more self-
contained.  However, it does increase the chances of
accidentially leaving behind resources when tests fail.

Fixes #265.
2017-06-23 15:50:58 -07:00
..
aws Make concurrent AWS test runs safer 2017-06-23 15:50:58 -07:00
lumi Update license headers 2017-06-23 14:53:41 -07:00
lumijs Update license headers 2017-06-23 14:53:41 -07:00
lumirt Update license headers 2017-06-23 14:53:41 -07:00
mantle Update license headers 2017-06-23 14:53:41 -07:00
README.md

lumi/lib

This directory contains some libraries that Lumi programs may depend upon.

Overview

The Lumi standard library underneath lumi/ is special in that every program will ultimately use it directly or indirectly to create resources.

Similarly, lumijs/ is the LumiJS compiler's runtime library, and so most LumiJS programs will on it.

Note that these are written in the Lumi subsets of the languages and therefore cannot perform I/O, etc.

Installation and Usage

Eventually these packages will be published like any other NPM package. For now, they are consumed only in a development capacity, and so there are some manual steps required to prepare a developer workspace.

For each library <lib> you wish to use, please see its install.sh script in its root directory. This performs installation so that it can be used simply by adding a dependency to it.

We currently use NPM/Yarn symlinks to ease the developer workspace flow. As such, you will need to run:

  • yarn link <lib>

In a project that intends to consume <lib> before actually using it. For example, yarn link @lumi/lumi.