From bb52cac5779d677bb398a8814ba93eb16d993d76 Mon Sep 17 00:00:00 2001 From: Ping Yu <4018+pyu10055@users.noreply.github.com> Date: Tue, 11 Feb 2020 13:55:53 -0800 Subject: [PATCH] add npm ignore file and updated the npm version (#403) --- qna/.npmignore | 16 ++++++++++++++++ qna/package.json | 2 +- qna/src/version.ts | 3 ++- 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 qna/.npmignore diff --git a/qna/.npmignore b/qna/.npmignore new file mode 100644 index 0000000000..5201eabf6f --- /dev/null +++ b/qna/.npmignore @@ -0,0 +1,16 @@ +.yalc/ +.vscode/ +.rpt2_cache/ +demo/ +scripts/ +src/ +coverage/ +node_modules/ +karma.conf.js +*.tgz +dist/**/*.js.map +.travis.yml +.npmignore +tslint.json +yalc.lock +yarn.lock diff --git a/qna/package.json b/qna/package.json index d93bd9f931..fffc7362fc 100644 --- a/qna/package.json +++ b/qna/package.json @@ -1,6 +1,6 @@ { "name": "@tensorflow-models/qna", - "version": "1.0.0-alpha1", + "version": "1.0.0-alpha2", "description": "Question and Answer model (Mobile BERT)", "main": "dist/index.js", "unpkg": "dist/qna.min.js", diff --git a/qna/src/version.ts b/qna/src/version.ts index bdf35ce23e..355ba96607 100644 --- a/qna/src/version.ts +++ b/qna/src/version.ts @@ -1,4 +1,5 @@ /** @license See the LICENSE file. */ + // This code is auto-generated, do not modify this file! -const version = '1.0.0-alpha1'; +const version = '1.0.0-alpha2'; export {version};