diff --git a/Gruntfile.js b/Gruntfile.js index b62c70ff..95e058ee 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -305,7 +305,7 @@ module.exports = function(grunt) { platform: 'linux', arch: ['x64'], icon: 'graphics/icon.ico', - ignore: [/(darwin|win32)-\w+\.node$/, /pcsclite.*\.node$/] + ignore: [/(darwin|win32)-\w+\.node$/] } }, darwin: { @@ -316,7 +316,7 @@ module.exports = function(grunt) { appBundleId: 'net.antelle.keeweb', appCategoryType: 'public.app-category.productivity', extendInfo: 'package/osx/extend.plist', - ignore: [/(linux|win32)-\w+\.node$/, /pcsclite.*\.node$/], + ignore: [/(linux|win32)-\w+\.node$/], osxSign: skipSign ? undefined : { @@ -383,7 +383,7 @@ module.exports = function(grunt) { arch: 'ia32', icon: 'graphics/icon.ico', buildVersion: pkg.version, - ignore: [/(linux|darwin)-\w+\.node$/, /pcsclite.*\.node$/, /(x64|arm64)\.node/], + ignore: [/(linux|darwin)-\w+\.node$/, /(x64|arm64)\.node/], 'version-string': windowsAppVersionString } }, @@ -393,11 +393,7 @@ module.exports = function(grunt) { arch: 'x64', icon: 'graphics/icon.ico', buildVersion: pkg.version, - ignore: [ - /(linux|darwin)-\w+\.node$/, - /pcsclite.*\.node$/, - /(ia32|arm64)\.node/ - ], + ignore: [/(linux|darwin)-\w+\.node$/, /(ia32|arm64)\.node/], 'version-string': windowsAppVersionString } }, @@ -407,7 +403,7 @@ module.exports = function(grunt) { arch: 'arm64', icon: 'graphics/icon.ico', buildVersion: pkg.version, - ignore: [/(linux|darwin)-\w+\.node$/, /pcsclite.*\.node$/, /(ia32|x64)\.node/], + ignore: [/(linux|darwin)-\w+\.node$/, /(ia32|x64)\.node/], 'version-string': windowsAppVersionString } } diff --git a/package-lock.json b/package-lock.json index 1ceb1857..37a4be5c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1407,8 +1407,8 @@ } }, "@keeweb/keeweb-native-modules": { - "version": "https://github.com/keeweb/keeweb-native-modules/releases/download/0.2.0/keeweb-native-modules.tgz", - "integrity": "sha512-0AuEeYvUiYUVZ4bgwz+DmT3j8RcFqMuKBLbo66JTEzRcBjjRKSqafO6RtwyOmyp9ooSnwuH7l6iAZrJDZe8bnw==" + "version": "https://github.com/keeweb/keeweb-native-modules/releases/download/0.2.2/keeweb-native-modules.tgz", + "integrity": "sha512-ch6sIUxSVlGnDxn7qbehr6ToXuezCI7ItDf6Aj1jFRvMc5S0Ls0RiJh177z/J7hL6iGrvPgx/8xJUFC2VmYuXw==" }, "@sindresorhus/is": { "version": "0.14.0", diff --git a/package.json b/package.json index adb4b3a6..0841d688 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-optional-chaining": "^7.9.0", "@babel/preset-env": "^7.9.6", - "@keeweb/keeweb-native-modules": "https://github.com/keeweb/keeweb-native-modules/releases/download/0.2.0/keeweb-native-modules.tgz", + "@keeweb/keeweb-native-modules": "https://github.com/keeweb/keeweb-native-modules/releases/download/0.2.2/keeweb-native-modules.tgz", "adm-zip": "^0.4.14", "argon2-browser": "1.13.0", "autoprefixer": "^9.7.6",