Added node-modules

This commit is contained in:
Dobie Wollert
2014-09-14 07:04:16 -04:00
parent 663941bf57
commit 6a92348cf5
4870 changed files with 670395 additions and 0 deletions

6
node_modules/less/build/amd.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
// amd.js
//
// Define Less as an AMD module.
if (typeof define === "function" && define.amd) {
define(function () { return less; } );
}

9
node_modules/less/build/header.js generated vendored Normal file
View File

@ -0,0 +1,9 @@
/*
* LESS - Leaner CSS v@VERSION
* http://lesscss.org
*
* Copyright (c) 2009-2013, Alexis Sellier
* Licensed under the Apache 2.0 License.
*
* @licence
*/

7
node_modules/less/build/require-rhino.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
//
// Stub out `require` in rhino
//
function require(arg) {
return less[arg.split('/')[1]];
};

7
node_modules/less/build/require.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
//
// Stub out `require` in the browser
//
function require(arg) {
return window.less[arg.split('/')[1]];
};