clipboardy
Advanced tools
Comparing version 1.2.1 to 1.2.2
'use strct'; | ||
const path = require('path'); | ||
const execa = require('execa'); | ||
const arch = require('arch'); | ||
// Binaries from: https://github.com/sindresorhus/win-clipboard | ||
const winBinPath = process.arch === 'x64' ? | ||
const winBinPath = arch() === 'x64' ? | ||
path.join(__dirname, '../fallbacks/windows/clipboard_x86_64.exe') : | ||
@@ -8,0 +9,0 @@ path.join(__dirname, '../fallbacks/windows/clipboard_i686.exe'); |
{ | ||
"name": "clipboardy", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Access the system clipboard (copy/paste)", | ||
@@ -37,2 +37,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"arch": "^2.1.0", | ||
"execa": "^0.8.0" | ||
@@ -39,0 +40,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
926128
127
2
+ Addedarch@^2.1.0
+ Addedarch@2.2.0(transitive)