Skip to content
This repository was archived by the owner on Nov 30, 2021. It is now read-only.
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
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -397,14 +397,14 @@ proto-update-deps:
# Start docs site at localhost:8080
docs-serve:
@cd docs && \
npm install && \
npm run serve
yarn install && \
yarn run serve

# Build the site into docs/.vuepress/dist
docs-build:
@cd docs && \
npm install && \
npm run build
yarn install && \
yarn run build

godocs:
@echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/ethermint"
Expand Down
6 changes: 3 additions & 3 deletions docs/DOCS_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,18 @@ rm -rf node_modules
This command will remove old version of the visual theme and required packages. This step is optional.

```bash
npm install
yarn install
```

Install the theme and all dependencies.

```bash
npm run serve
yarn run serve
```

Run `pre` and `post` hooks and start a hot-reloading web-server. See output of this command for the URL (it is often [https://localhost:8080](https://localhost:8080)).

To build documentation as a static website run `npm run build`. You will find the website in `.vuepress/dist` directory.
To build documentation as a static website run `yarn run build`. You will find the website in `.vuepress/dist` directory.

## Search

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/truffle.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Set up a Truffle Ethermint local development environment. {synopsis}
First, install the latest Truffle version on your machine globally.

```bash
npm install truffle -g
yarn install truffle -g
```

You will also need to install Ethermint. Check this [document](./../quickstart/installation.md) for the full instructions.
Expand Down
10,764 changes: 0 additions & 10,764 deletions docs/package-lock.json

This file was deleted.

5 changes: 2 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
"postserve": "./post.sh",
"prebuild": "./pre.sh",
"build": "trap 'exit 0' SIGINT; vuepress build --no-cache",
"postbuild": "./post.sh",
"preinstall": "npx npm-force-resolutions"
"postbuild": "./post.sh"
},
"keywords": [
"ethermint",
Expand All @@ -22,7 +21,7 @@
"author": "ChainSafe Systems",
"license": "ISC",
"dependencies": {
"npm-force-resolutions": "0.0.3",
"entities": "^2.0.3",
"vuepress-theme-cosmos": "^1.0.172"
},
"devDependencies": {
Expand Down
8,506 changes: 8,506 additions & 0 deletions docs/yarn.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions tests-solidity/suites/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@
"devDependencies": {
"truffle": "^5.1.42",
"web3": "^1.2.11"
},
"dependencies": {
"truffle": "^5.1.43"
}
}
9 changes: 9 additions & 0 deletions tests-solidity/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7756,6 +7756,15 @@ truffle@^5.1.42:
mocha "8.1.2"
original-require "1.0.1"

truffle@^5.1.43:
version "5.1.43"
resolved "https://registry.yarnpkg.com/truffle/-/truffle-5.1.43.tgz#544e7b0955b6728a00761a86555c1eb259313266"
integrity sha512-KXda/70RAG9TBdQta8JEwVQmL9r/AZzU++5aZkrF4/nDosund8SV1yM9CcDTib4xLWuMaB15YyOC5r163QdLAw==
dependencies:
app-module-path "^2.2.0"
mocha "8.1.2"
original-require "1.0.1"

ts-essentials@^2.0.7:
version "2.0.12"
resolved "https://registry.yarnpkg.com/ts-essentials/-/ts-essentials-2.0.12.tgz#c9303f3d74f75fa7528c3d49b80e089ab09d8745"
Expand Down