From 453c82092b1c705afe67fac534e10f8fcafdaf2e Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Thu, 2 Feb 2017 17:25:40 +0000 Subject: [PATCH 1/3] chore(package): update dependencies https://greenkeeper.io/ --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 9f44834..b869ab4 100644 --- a/package.json +++ b/package.json @@ -21,17 +21,17 @@ }, "homepage": "https://github.com/LLK/scratch-audio#readme", "devDependencies": { - "babel-core": "6.17.0", - "babel-eslint": "7.0.0", - "babel-loader": "6.2.5", - "babel-preset-es2015": "6.16.0", - "eslint": "3.7.1", + "babel-core": "6.22.1", + "babel-eslint": "7.1.1", + "babel-loader": "6.2.10", + "babel-preset-es2015": "6.22.0", + "eslint": "3.14.1", "json": "9.0.4", "minilog": "^3.0.1", "soundfont-player": "0.10.5", "tone": "0.9.0", "travis-after-all": "1.4.4", - "webpack": "1.13.2" + "webpack": "2.2.1" }, "dependencies": {} } From cda87fa155ddae4085ef1e3e8bf900bbefd08bb6 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Thu, 2 Feb 2017 17:25:41 +0000 Subject: [PATCH 2/3] docs(readme): add Greenkeeper badge https://greenkeeper.io/ --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 012e77a..b5921b6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # scratch-audio #### Scratch audio engine is for playing sounds, instruments and audio effects in Scratch 3.0 projects +[![Greenkeeper badge](https://badges.greenkeeper.io/LLK/scratch-audio.svg)](https://greenkeeper.io/) + #### Please note this project is at an early stage and we are not ready for pull requests [![Build Status](https://travis-ci.org/LLK/scratch-audio.svg?branch=develop)](https://travis-ci.org/LLK/scratch-audio) From 0610f8a6ce254428c7bdcc97401b954499d40528 Mon Sep 17 00:00:00 2001 From: Ray Schamp Date: Mon, 17 Apr 2017 11:11:06 -0400 Subject: [PATCH 3/3] Update packages, fix lint error --- package.json | 19 +++++++++---------- src/InstrumentPlayer.js | 6 +++--- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index b869ab4..2f90211 100644 --- a/package.json +++ b/package.json @@ -21,17 +21,16 @@ }, "homepage": "https://github.com/LLK/scratch-audio#readme", "devDependencies": { - "babel-core": "6.22.1", - "babel-eslint": "7.1.1", - "babel-loader": "6.2.10", - "babel-preset-es2015": "6.22.0", - "eslint": "3.14.1", - "json": "9.0.4", + "babel-core": "^6.24.1", + "babel-eslint": "^7.2.2", + "babel-loader": "^6.4.1", + "babel-preset-es2015": "^6.24.1", + "eslint": "^3.19.0", + "json": "^9.0.6", "minilog": "^3.0.1", "soundfont-player": "0.10.5", "tone": "0.9.0", - "travis-after-all": "1.4.4", - "webpack": "2.2.1" - }, - "dependencies": {} + "travis-after-all": "^1.4.4", + "webpack": "2.4.0" + } } diff --git a/src/InstrumentPlayer.js b/src/InstrumentPlayer.js index 718fad5..9a989bc 100644 --- a/src/InstrumentPlayer.js +++ b/src/InstrumentPlayer.js @@ -19,9 +19,9 @@ function InstrumentPlayer (outputNode) { // match scratch instruments this.instrumentNames = ['acoustic_grand_piano', 'electric_piano_1', 'drawbar_organ', 'acoustic_guitar_nylon', 'electric_guitar_clean', - 'acoustic_bass', 'pizzicato_strings', 'cello', 'trombone', 'clarinet', - 'tenor_sax', 'flute', 'pan_flute', 'bassoon', 'choir_aahs', 'vibraphone', - 'music_box', 'steel_drums', 'marimba', 'lead_1_square', 'fx_4_atmosphere']; + 'acoustic_bass', 'pizzicato_strings', 'cello', 'trombone', 'clarinet', + 'tenor_sax', 'flute', 'pan_flute', 'bassoon', 'choir_aahs', 'vibraphone', + 'music_box', 'steel_drums', 'marimba', 'lead_1_square', 'fx_4_atmosphere']; this.instruments = []; }