diff --git a/.npmignore b/.npmignore index d320cee..953bda1 100644 --- a/.npmignore +++ b/.npmignore @@ -8,6 +8,7 @@ .vscode babel.config.js build +build-linux.sh coverage docs src @@ -15,3 +16,4 @@ test tsconfig.json *.ts !*.d.ts +Dockerfile diff --git a/build-linux.sh b/build-linux.sh index 122398a..f3e3a93 100755 --- a/build-linux.sh +++ b/build-linux.sh @@ -1,4 +1,4 @@ -CURRENT_LIBRAWJS_VERSION=2.3.0 +CURRENT_LIBRAWJS_VERSION=3.0.0 PREBUILD_PATH="prebuilds/linux-x64" NODE_FILE_NAME="node.napi.node" OUTPUT_PATH="./${PREBUILD_PATH}/${NODE_FILE_NAME}" diff --git a/package-lock.json b/package-lock.json index 505bf81..a667193 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "libraw.js", - "version": "2.3.0", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "libraw.js", - "version": "2.3.0", + "version": "3.0.0", "hasInstallScript": true, "license": "LGPL-2.1", "dependencies": { diff --git a/package.json b/package.json index 95e2eac..557d895 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "libraw.js", "author": "Justin Kambic", - "version": "2.3.0", + "version": "3.0.0", "description": "Provide a subset of LibRaw functionality.", "main": "./dist/libraw.js", "types": "./dist/libraw.d.ts",