From 3c8dffbe52fd339297f4e4f1f431e96435ecd863 Mon Sep 17 00:00:00 2001 From: Yuuki Najima Date: Mon, 23 Feb 2015 14:16:05 +0900 Subject: [PATCH] use sync-exec instead of execSync execSync is no longer maintained. See https://github.com/mgutz/execSync # Please enter the commit message for your changes. Lines starting # with '#' will be kept; you may remove them yourself if you want to. # An empty message aborts the commit. # On branch master # Your branch is up-to-date with 'origin/master'. # # Changes to be committed: # modified: mecab.js # modified: package.json # --- mecab.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mecab.js b/mecab.js index bcf27b2..1e5eff1 100644 --- a/mecab.js +++ b/mecab.js @@ -1,5 +1,5 @@ var exec = require('child_process').exec; -var execSync = require('execsync'); +var execSync = require('sync-exec'); var sq = require('shell-quote'); // for backward compatibility diff --git a/package.json b/package.json index b9faf86..cd33bc0 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ }, "main": "mecab", "dependencies": { - "execsync": "*", + "sync-exec": "*", "shell-quote": "*" }, "readmeFilename": "README.md",