diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2021-06-03 13:40:35 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2021-06-03 13:40:35 -0700 |
commit | baaffbaeddf300a69d167f5f3e8e34013743a9b3 (patch) | |
tree | ef2258b3176efe0772dcae0926ae5e59769b3290 | |
parent | 4cb3f222b140fd87b87a3c6702d0c49078e5a04c (diff) | |
download | flatbuffers-baaffbaeddf300a69d167f5f3e8e34013743a9b3.tar.gz flatbuffers-baaffbaeddf300a69d167f5f3e8e34013743a9b3.tar.bz2 flatbuffers-baaffbaeddf300a69d167f5f3e8e34013743a9b3.zip |
npm update to 2.0.3 and script fix
Change-Id: Idacbc5973e9c1f713f5c8e03513a83590e336fdb
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 2 insertions, 6 deletions
@@ -129,10 +129,6 @@ package-lock.json /*.ilk /*.pdb .clwb -js/**/*.js -js/**/*.d.ts -mjs/**/*.js -mjs/**/*.d.ts yarn-error.log .cache/ /flatbuffers.lib diff --git a/package.json b/package.json index be805356..8d143bed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flatbuffers", - "version": "2.0.0", + "version": "2.0.3", "description": "Memory Efficient Serialization Library", "files": [ "js/*.js", @@ -18,7 +18,7 @@ "scripts": { "test": "npm run compile && cd tests && ./TypeScriptTest.sh", "compile": "tsc && tsc -p tsconfig.mjs.json", - "prepublishOnly": "npm run compile" + "prepublishOnly": "npm install --only=dev && npm run compile" }, "repository": { "type": "git", |