Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

File diff suppressed because it is too large Load Diff

31
node_modules/webmidi/playground/testwebpack/index.html generated vendored Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- For Windows 8 and 10 to support Jazz Plugin -->
<meta http-equiv="X-UA-Compatible" content="requiresActiveX=true"/>
<title>Web MIDI API Demo</title>
<script src="dist/app.bundle.js"></script>
</head>
<body>
<p>Open the debugging console and look at the <b>app.js</b> file for usage examples.</p>
<!-- Jazz Plugin for browsers that do not support Web MIDI-->
<object id="Jazz1" classid="CLSID:1ACE1618-1C7D-4561-AEE1-34842AA85E90" class="hidden">
<object id="Jazz2" type="audio/x-jazz" class="hidden">
<p><a href=http://jazz-soft.net>Jazz-Plugin</a> required!</p>
</object>
</object>
</body>
</html>

View File

@@ -0,0 +1,7 @@
var Utils = {
isNative: function(fn) {
return (/\{\s*\[native code\]\s*\}/).test('' + fn);
}
};

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,13 @@
const path = require('path');
// const webpack = require('webpack');
module.exports = {
context: path.resolve(__dirname, './src'),
entry: {
app: './app.js',
},
output: {
path: path.resolve(__dirname, './dist'),
filename: '[name].bundle.js',
},
};