Socket
Socket
Sign inDemoInstall

soundtouchjs

Package Overview
Dependencies
0
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.22 to 0.1.23

2

CHANGELOG.md
Changelog
### 0.1.23 (2020-07-20)
### 0.1.22 (2020-07-20)

@@ -3,0 +5,0 @@

2

dist/soundtouch.js
/*
* SoundTouch JS v0.1.22 audio processing library
* SoundTouch JS v0.1.23 audio processing library
* Copyright (c) Olli Parviainen

@@ -4,0 +4,0 @@ * Copyright (c) Ryan Berdeen

{
"name": "soundtouchjs",
"version": "0.1.22",
"version": "0.1.23",
"description": "An ES2015 library for manipulating Web Audio Contexts",

@@ -41,14 +41,15 @@ "main": "dist/soundtouch.js",

"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@rollup/plugin-commonjs": "14.0.0",
"@rollup/plugin-node-resolve": "8.4.0",
"connect": "3.7.0",
"git-branch-is": "3.1.0",
"husky": "4.2.3",
"prettier": "2.0.2",
"husky": "4.2.5",
"open": "7.1.0",
"prettier": "2.0.5",
"regenerator-runtime": "0.13.5",
"rollup": "2.3.2",
"rollup": "2.22.1",
"rollup-plugin-babel": "4.4.0",

@@ -59,3 +60,3 @@ "rollup-plugin-cleanup": "3.1.1",

"serve-static": "1.14.1",
"standard-version": "8.0.1"
"standard-version": "8.0.2"
},

@@ -62,0 +63,0 @@ "dependencies": {},

const connect = require('connect');
const path = require('path');
const serveStatic = require('serve-static');
const open = require('open');
const port = 8080;
connect()
.use(serveStatic(path.join(__dirname, '../public')))
.use(serveStatic(path.join(__dirname, '../dist')))
.listen(8080, function () {
.listen(port, function () {
console.log('dir is ', path.join(__dirname, '../public'));
console.log('Go to http://localhost:8080');
console.log(`Listing on http://localhost:${port}`);
open(`http://localhost:${port}`);
});

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc