mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 21:58:01 +00:00
09b905415b
Description
===========
- Introduced npm workspaces to manage
CLI tests from the root directory.
- Enabled simplified npm dependency
installation from the root.
- Updated .gitignore to align with
the new workspace structure.
Usage
=====
From the root directory
To install repo npm packages, run:
```
npm install && npm fund
```
To run related tests, run:
```
npm run test:cli
```
11 lines
215 B
JSON
11 lines
215 B
JSON
{
|
|
"name": "root",
|
|
"private": true,
|
|
"scripts": {
|
|
"test:cli": "npm run test -w crates/solidity/src/tests/cli-tests"
|
|
},
|
|
"workspaces": [
|
|
"crates/solidity/src/tests/cli-tests"
|
|
]
|
|
}
|