mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-22 19:50:50 +00:00
refactor(@embark/specialconfigs): move specialconfigs module
This commit is contained in:
parent
0f1a58730e
commit
c65a4a7f55
6
packages/embark-specialconfigs/README.md
Normal file
6
packages/embark-specialconfigs/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
# `embark-specialconfigs`
|
||||
|
||||
Adds various configs to embark's contract.js config file
|
||||
|
||||
Visit [embark.status.im](https://embark.status.im/) to get started with
|
||||
[Embark](https://github.com/embark-framework/embark).
|
68
packages/embark-specialconfigs/package.json
Normal file
68
packages/embark-specialconfigs/package.json
Normal file
@ -0,0 +1,68 @@
|
||||
{
|
||||
"name": "embark-specialconfigs",
|
||||
"version": "4.0.0",
|
||||
"author": "Iuri Matias <iuri.matias@gmail.com>",
|
||||
"contributors": [],
|
||||
"description": "Adds various configs to embark's contract.js config file",
|
||||
"homepage": "https://github.com/embark-framework/embark/tree/master/packages/embark-specialconfigs#readme",
|
||||
"bugs": "https://github.com/embark-framework/embark/issues",
|
||||
"keywords": [
|
||||
"blockchain",
|
||||
"dapps",
|
||||
"ethereum",
|
||||
"ipfs",
|
||||
"serverless",
|
||||
"solc",
|
||||
"solidity"
|
||||
],
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"directory": "packages/embark-specialconfigs",
|
||||
"type": "git",
|
||||
"url": "https://github.com/embark-framework/embark.git"
|
||||
},
|
||||
"main": "./dist/index.js",
|
||||
"scripts": {
|
||||
"build": "cross-env BABEL_ENV=node babel src --extensions \".js,.ts\" --out-dir dist --root-mode upward --source-maps",
|
||||
"ci": "npm run qa",
|
||||
"clean": "npm run reset",
|
||||
"lint": "npm-run-all lint:*",
|
||||
"lint:js": "eslint src/",
|
||||
"// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
||||
"package": "npm pack",
|
||||
"// qa": "npm-run-all lint typecheck build package",
|
||||
"qa": "npm-run-all lint build package",
|
||||
"reset": "npx rimraf dist embark-*.tgz package",
|
||||
"start": "npm run watch",
|
||||
"// typecheck": "tsc",
|
||||
"watch": "run-p watch:*",
|
||||
"watch:build": "npm run build -- --verbose --watch",
|
||||
"// watch:typecheck": "npm run typecheck -- --preserveWatchOutput --watch"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "../../.eslintrc.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime-corejs2": "7.3.1",
|
||||
"async": "2.6.1",
|
||||
"viz.js": "1.8.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.2.3",
|
||||
"@babel/core": "7.2.2",
|
||||
"cross-env": "5.2.0",
|
||||
"eslint": "5.7.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
"rimraf": "2.6.3",
|
||||
"tslint": "5.11.0",
|
||||
"typescript": "3.3.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8.12.0",
|
||||
"npm": ">=6.4.1",
|
||||
"yarn": ">=1.12.3"
|
||||
}
|
||||
}
|
4
packages/embark-specialconfigs/tsconfig.json
Normal file
4
packages/embark-specialconfigs/tsconfig.json
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"include": ["src/**/*"]
|
||||
}
|
3
packages/embark-specialconfigs/tslint.json
Normal file
3
packages/embark-specialconfigs/tslint.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "../../tslint.json"
|
||||
}
|
@ -91,6 +91,7 @@
|
||||
"embark-ui": "^4.0.0",
|
||||
"embark-vyper": "^4.0.0",
|
||||
"embark-profiler": "^4.0.0",
|
||||
"embark-specialconfigs": "^4.0.0",
|
||||
"embarkjs": "^4.0.0",
|
||||
"eth-ens-namehash": "2.0.8",
|
||||
"ethereumjs-tx": "1.3.7",
|
||||
|
@ -227,7 +227,7 @@ class Engine {
|
||||
this.registerModulePackage('embark-vyper');
|
||||
this.registerModulePackage('embark-profiler');
|
||||
this.registerModule('deploytracker', {trackContracts: options.trackContracts});
|
||||
this.registerModule('specialconfigs');
|
||||
this.registerModulePackage('embark-specialconfigs');
|
||||
this.registerModule('ens');
|
||||
this.registerModule('console_listener', {ipc: self.ipc});
|
||||
this.registerModule('deployment', {plugins: this.plugins, onlyCompile: options.onlyCompile});
|
||||
|
Loading…
x
Reference in New Issue
Block a user