@0xproject/deployer 中文文档教程
@0xproject/deployer
这个存储库包含一个 CLI 工具,可以促进智能合约的编译和部署。
Read the Documentation.
Installation
CLI Installation
yarn global add @0xproject/deployer
API Installation
yarn add @0xproject/deployer
如果您的项目在 TypeScript 中,请将以下内容添加到您的 tsconfig.json
:
"compilerOptions": {
"typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"],
}
Import
import { Deployer, Compiler } from '@0xproject/deployer';
或者
var Deployer = require('@0xproject/deployer').Deployer;
var Compiler = require('@0xproject/deployer').Compiler;
Contributing
我们欢迎来自更广泛社区的改进和修复! 要报告此包中的错误,请在此存储库中创建一个问题。
请在开始之前阅读我们的贡献指南。
Install dependencies
如果你没有启用 yarn workspaces (Yarn < v1.0) - 启用它们:
yarn config set workspaces-experimental true
然后安装依赖
yarn install
Build
项 如果这是你第一次构建这个包,你必须首先构建all< /strong> monorepo 中的包。 这是因为依赖于位于此 monorepo 内的其他包的包在从 monorepo 的 within 运行时是符号链接的。 这允许您在多个包之间进行更改,而无需先将依赖包发布到 NPM。 要构建所有包,请从 monorepo 根目录
yarn lerna:rebuild
命令:
yarn dev
以下
yarn build
运行
yarn build:watch
Clean
yarn clean
Lint
yarn lint
Run Tests
yarn test
@0xproject/deployer
This repository contains a CLI tool that facilitates compiling and deployment of smart contracts.
Read the Documentation.
Installation
CLI Installation
yarn global add @0xproject/deployer
API Installation
yarn add @0xproject/deployer
If your project is in TypeScript, add the following to your tsconfig.json
:
"compilerOptions": {
"typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"],
}
Import
import { Deployer, Compiler } from '@0xproject/deployer';
or
var Deployer = require('@0xproject/deployer').Deployer;
var Compiler = require('@0xproject/deployer').Compiler;
Contributing
We welcome improvements and fixes from the wider community! To report bugs within this package, please create an issue in this repository.
Please read our contribution guidelines before getting started.
Install dependencies
If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them:
yarn config set workspaces-experimental true
Then install dependencies
yarn install
Build
If this is your first time building this package, you must first build all packages within the monorepo. This is because packages that depend on other packages located inside this monorepo are symlinked when run from within the monorepo. This allows you to make changes across multiple packages without first publishing dependent packages to NPM. To build all packages, run the following from the monorepo root directory:
yarn lerna:rebuild
Or continuously rebuild on change:
yarn dev
You can also build this specific package by running the following from within its directory:
yarn build
or continuously rebuild on change:
yarn build:watch
Clean
yarn clean
Lint
yarn lint
Run Tests
yarn test