From 15058e036cc8f58ba5c23ecc8f4a44425d2056d8 Mon Sep 17 00:00:00 2001 From: Kevin Kwok Date: Fri, 14 Oct 2016 01:42:18 -0400 Subject: [PATCH] new release --- README.md | 2 +- dist/tesseract.js | 4 ++-- package.json | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 065d2bc..08a260f 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Tesseract.js works with a ` + ``` After including your scripts, the `Tesseract` variable should be defined! You can [head to the docs](#docs) for a full treatment of the API. diff --git a/dist/tesseract.js b/dist/tesseract.js index af905e8..d9bbc7c 100644 --- a/dist/tesseract.js +++ b/dist/tesseract.js @@ -268,14 +268,14 @@ process.umask = function() { return 0; }; },{}],3:[function(require,module,exports){ module.exports={ "name": "tesseract.js", - "version": "1.0.6", + "version": "1.0.7", "description": "Pure Javascript Multilingual OCR", "main": "src/index.js", "scripts": { "test": "echo \"Error: no test specified\" & exit 1", "start": "watchify src/index.js -t [ envify --NODE_ENV development ] -t [ babelify --presets [ es2015 ] ] -o dist/tesseract.dev.js --standalone Tesseract & watchify src/browser/worker.js -t [ envify --NODE_ENV development ] -t [ babelify --presets [ es2015 ] ] -o dist/worker.dev.js & http-server -p 7355", "build": "browserify src/index.js -t [ babelify --presets [ es2015 ] ] -o dist/tesseract.js --standalone Tesseract && browserify src/browser/worker.js -t [ babelify --presets [ es2015 ] ] -o dist/worker.js", - "release": "git tag `jq -r '.version' package.json` && git push origin --tags && npm publish" + "release": "npm run build && git commit -am 'new release' && git tag `jq -r '.version' package.json` && git push origin --tags && npm publish" }, "browser": { "./src/node/index.js": "./src/browser/index.js" diff --git a/package.json b/package.json index ad97aaa..e56d22f 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "tesseract.js", - "version": "1.0.6", + "version": "1.0.7", "description": "Pure Javascript Multilingual OCR", "main": "src/index.js", "scripts": { "test": "echo \"Error: no test specified\" & exit 1", "start": "watchify src/index.js -t [ envify --NODE_ENV development ] -t [ babelify --presets [ es2015 ] ] -o dist/tesseract.dev.js --standalone Tesseract & watchify src/browser/worker.js -t [ envify --NODE_ENV development ] -t [ babelify --presets [ es2015 ] ] -o dist/worker.dev.js & http-server -p 7355", "build": "browserify src/index.js -t [ babelify --presets [ es2015 ] ] -o dist/tesseract.js --standalone Tesseract && browserify src/browser/worker.js -t [ babelify --presets [ es2015 ] ] -o dist/worker.js", - "release": "git tag `jq -r '.version' package.json` && git push origin --tags && npm publish" + "release": "npm run build && git commit -am 'new release' && git tag `jq -r '.version' package.json` && git push origin --tags && npm publish" }, "browser": { "./src/node/index.js": "./src/browser/index.js"