mirror of https://github.com/embarklabs/embark.git
refactor(@embark/core): move CoreProcess into embark-core
This commit is contained in:
parent
04694edb0b
commit
13e926659f
|
@ -17,7 +17,8 @@
|
|||
],
|
||||
"files": [
|
||||
"constants.json",
|
||||
"dist"
|
||||
"dist",
|
||||
"process.js"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
@ -31,7 +32,7 @@
|
|||
"ci": "npm run qa",
|
||||
"clean": "npm run reset",
|
||||
"lint": "npm-run-all lint:*",
|
||||
"lint:js": "eslint src/",
|
||||
"lint:js": "eslint process.js src/",
|
||||
"// lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
|
||||
"package": "npm pack",
|
||||
"// qa": "npm-run-all lint typecheck build package",
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
module.exports = require('./dist/processes/coreProcess');
|
|
@ -113,7 +113,7 @@ class Engine {
|
|||
}
|
||||
|
||||
coreProcessService(_options){
|
||||
this.registerModule('core_process', {
|
||||
this.registerModulePackage('embark-core/process', {
|
||||
events: this.events
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue