embark/dapps/tests/contracts
Michael Bradley, Jr 5418f16082 feat: normalize README and package.json bugs, homepage, description
Make changes by running these commands in the root of the monorepo:

**bugs**
```shell
npx lerna exec --concurrency 1 --stream -- \
    'DIRPATH=$(realpath $PWD --relative-to=$LERNA_ROOT_PATH); \
    npx json -I -f package.json -e "this.bugs=\
        \"https://github.com/embark-framework/embark/issues\""'
```

**homepage**
```shell
npx lerna exec --concurrency 1 --stream -- \
    'DIRPATH=$(realpath $PWD --relative-to=$LERNA_ROOT_PATH); \
    npx json -I -f package.json -e "this.homepage=\
        \"https://github.com/embark-framework/embark/tree/master/${DIRPATH}#readme\""'
```

Don't commit changes to private packages, with the exceptions of embark-typings
and embark-reset because those may switch from private to public, and also
because the latter will be included in `node_modules` of embark even if it is
private since embark-reset is presently a bundled dependency of embark.

Don't include the homepage and bugs fields in dapps generated from the template
packages, except for the demo. Set those dapps' description field to an empty
string.

Ensure every package (inc. private packages) has a description.

Ensure every package (inc. private packages) has a README that begins with:

```markdown
`[pkgJson.name]`
================

> [pkgJson.description]

Visit [embark.status.im](https://embark.status.im/) to get started with
[Embark](https://github.com/embark-framework/embark).
```

Don't include the README in dapps generated from the template packages, except
for the demo.
2019-03-12 09:17:33 -04:00
..
contracts build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
privatenet build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
rinkeby build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
ropsten build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
test build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
.npmrc build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
README.md feat: normalize README and package.json bugs, homepage, description 2019-03-12 09:17:33 -04:00
blockchain.json build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
contracts.json build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
embark.json build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
ens.json build: make DApp templates member packages of the monorepo 2019-03-05 10:20:57 -06:00
package.json feat: normalize README and package.json bugs, homepage, description 2019-03-12 09:17:33 -04:00

README.md

embark-dapp-test-contracts

Test DApp for integration testing purposes

In the top-level of the monorepo

yarn globalize to make development embark available on the global PATH.

In this directory

embark run to check if everything is behaving as expected.

embark test to see tests are working as expected.