New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

bitwig-multisamplegen

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitwig-multisamplegen - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

7

dist/index.js

@@ -227,2 +227,3 @@ #!/usr/bin/env node

const ALLOWED_EXTENSIONS = ['wav', 'aif', 'mp3', 'ogg'];
const COMPRESSION_TYPE = 'DEFLATE';
const ALL_NOTES = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B'];

@@ -305,3 +306,3 @@

if (!ALLOWED_EXTENSIONS.includes(parsed.extension)) {
if (!ALLOWED_EXTENSIONS.includes(parsed.extension.toLowerCase())) {
ora(`ignored '${parsed.fullname}' file`).warn();

@@ -416,3 +417,3 @@ return null;

zip.file(MULTISAMPLE_FILE, generateMultiSampleXml(givenPackageName, AUTHOR_NAME, samples), {
compression: 'DEFLATE'
compression: COMPRESSION_TYPE
});

@@ -426,3 +427,3 @@ const spinner = ora('Copy sample files...').start();

zip.file(sample.name, buffer, {
compression: 'DEFLATE'
compression: COMPRESSION_TYPE
});

@@ -429,0 +430,0 @@ });

{
"name": "bitwig-multisamplegen",
"version": "1.0.0",
"version": "1.0.1",
"description": "Generate multisample xml file from samples ",

@@ -5,0 +5,0 @@ "author": "guillaumearm",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc