Commit 1c4f8385 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

Merge pull request #1957 from ethereum-optimism/sc/mr-unnecessary-runner

maintenance(message-relayer): remove unnecessary js runner script
parents 98aed461 3a673322
---
'@eth-optimism/message-relayer': patch
---
Removed old node.js service running script
#!/usr/bin/env node
const main = require('../dist/exec/run').default
;(async () => {
await main()
})().catch((err) => {
console.log(err)
process.exit(1)
})
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
"withdraw": "./src/exec/withdraw.ts" "withdraw": "./src/exec/withdraw.ts"
}, },
"scripts": { "scripts": {
"start": "node ./exec/run-message-relayer.js", "start": "ts-node ./src/exec/run.ts",
"build": "tsc -p ./tsconfig.build.json", "build": "tsc -p ./tsconfig.build.json",
"clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo", "clean": "rimraf dist/ ./tsconfig.build.tsbuildinfo",
"lint": "yarn lint:fix && yarn lint:check", "lint": "yarn lint:fix && yarn lint:check",
...@@ -72,6 +72,7 @@ ...@@ -72,6 +72,7 @@
"lodash": "^4.17.21", "lodash": "^4.17.21",
"mocha": "^8.4.0", "mocha": "^8.4.0",
"prettier": "^2.3.1", "prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.5" "typescript": "^4.3.5"
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment