Unverified Commit b32ee39a authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #121 from ethereum/bumpVersion-remixplugin

bump remix-plugin version
parents 95380739 4f97b994
This diff is collapsed.
{ {
"name": "remixd", "name": "remixd",
"version": "0.2.3-alpha.1", "version": "0.2.3-alpha.4",
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)", "description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",
"main": "./lib/src/index.js", "main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts", "types": "./lib/src/index.d.ts",
...@@ -32,13 +32,13 @@ ...@@ -32,13 +32,13 @@
}, },
"homepage": "https://github.com/ethereum/remixd#readme", "homepage": "https://github.com/ethereum/remixd#readme",
"dependencies": { "dependencies": {
"@remixproject/plugin": "0.3.0-alpha.3", "@remixproject/plugin": "^0.3.0-alpha.8",
"@remixproject/plugin-ws": "0.3.0-alpha.1", "@remixproject/plugin-ws": "^0.3.0-alpha.4",
"chokidar": "^2.1.8",
"commander": "^2.20.3", "commander": "^2.20.3",
"fs-extra": "^3.0.1",
"isbinaryfile": "^3.0.2", "isbinaryfile": "^3.0.2",
"ws": "^7.3.0", "ws": "^7.3.0"
"chokidar": "^2.1.8",
"fs-extra": "^3.0.1"
}, },
"python": { "python": {
"execPath": "python3", "execPath": "python3",
......
...@@ -51,7 +51,7 @@ export class RemixdClient extends PluginClient { ...@@ -51,7 +51,7 @@ export class RemixdClient extends PluginClient {
const path = utils.absolutePath(args.path, this.currentSharedFolder) const path = utils.absolutePath(args.path, this.currentSharedFolder)
if (!fs.existsSync(path)) { if (!fs.existsSync(path)) {
reject('File not found ' + path) return reject('File not found ' + path)
} }
if (!isRealPath(path)) return if (!isRealPath(path)) return
isbinaryfile(path, (error: Error, isBinary: boolean) => { isbinaryfile(path, (error: Error, isBinary: boolean) => {
......
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