From 98814a9324e28d12bddff8b1e8b5519cdda4b94e Mon Sep 17 00:00:00 2001 From: chrisweb Date: Sat, 15 Oct 2016 23:57:41 +0200 Subject: [PATCH] refactoring --- .bowerrc | 4 -- .gitattributes | 5 +++ .gitignore | 19 +++++---- bower.json | 32 --------------- waveform-visualizer.njsproj | 82 +++++++++++++++++++++++++++++++++++++ waveform-visualizer.sln | 22 ++++++++++ 6 files changed, 121 insertions(+), 43 deletions(-) delete mode 100644 .bowerrc create mode 100644 .gitattributes delete mode 100644 bower.json create mode 100644 waveform-visualizer.njsproj create mode 100644 waveform-visualizer.sln diff --git a/.bowerrc b/.bowerrc deleted file mode 100644 index c93e35d..0000000 --- a/.bowerrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "directory": "examples/client/scripts/vendor", - "analytics": false -} diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..b7ca95b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# JS files must always use LF for tools to work +*.js eol=lf diff --git a/.gitignore b/.gitignore index 7618a44..974f79b 100644 --- a/.gitignore +++ b/.gitignore @@ -12,17 +12,22 @@ lib-cov pids results +# npm npm-debug.log + +# windows Thumbs.db desktop.ini +# third party libraries node_modules vendor -yeoman -nbproject -.sass-cache - -downloads -client_build -configuration.js \ No newline at end of file +# IDEs +nbproject/private +.vs +*.user +.ntvs_analysis.dat +.ntvs_analysis.dat.tmp +*.njsperf +Output-Npm.txt \ No newline at end of file diff --git a/bower.json b/bower.json deleted file mode 100644 index e55479e..0000000 --- a/bower.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "waveform-visualizer", - "version": "0.0.1", - "description": "nodejs and web audio api waveform visualizer", - "homepage": "https://github.com/chrisweb/waveform-visualizer", - "authors": [ - "Chris Weber (chrisweb) " - ], - "main": "client/main.js", - "moduleType": [ - "amd" - ], - "keywords": [ - "waveform", - "visualizer", - "canvas", - "javascript" - ], - "license": "MIT", - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "jquery": "~2.1.1", - "requirejs": "~2.1.15", - "web-audio-api-player": "https://github.com/chrisweb/web-audio-api-player.git#master" - } -} diff --git a/waveform-visualizer.njsproj b/waveform-visualizer.njsproj new file mode 100644 index 0000000..6289a27 --- /dev/null +++ b/waveform-visualizer.njsproj @@ -0,0 +1,82 @@ + + + + Debug + 2.0 + {90a752d4-9f39-46c0-8a6b-69cad616a27f} + + ShowAllFiles + + . + . + {3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD} + 11.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + False + True + 0 + / + http://localhost:48022/ + False + True + http://localhost:1337 + False + + + + + + + CurrentPage + True + False + False + False + + + + + + + + + False + False + + + + + \ No newline at end of file diff --git a/waveform-visualizer.sln b/waveform-visualizer.sln new file mode 100644 index 0000000..450e36e --- /dev/null +++ b/waveform-visualizer.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.24720.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}") = "waveform-visualizer", "waveform-visualizer.njsproj", "{90A752D4-9F39-46C0-8A6B-69CAD616A27F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal