Added plugin build script, very useful to test compressed plugins. Modified build files to allow that "external" build. Feel free to add your own plugin to the plugin build.
This commit is contained in:
parent
216477bc57
commit
77a12d16f0
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
load("build/js/ParseMaster.js", "build/js/pack.js", "build/js/writeFile.js");
|
load("../jquery/build/js/ParseMaster.js", "../jquery/build/js/pack.js", "../jquery/build/js/writeFile.js");
|
||||||
|
|
||||||
var out = readFile( arguments[0] );
|
var out = readFile( arguments[0] );
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
load("build/js/writeFile.js");
|
load("../jquerybuild/js/writeFile.js");
|
||||||
|
|
||||||
var blockMatch = /\s*\/\*\*\s*((.|\n|\r\n)*?)\s*\*\/\n*/g;
|
var blockMatch = /\s*\/\*\*\s*((.|\n|\r\n)*?)\s*\*\/\n*/g;
|
||||||
var f = readFile(arguments[0]).replace( blockMatch, "\n" ).replace( /\n\n+/g, "\n\n" );
|
var f = readFile(arguments[0]).replace( blockMatch, "\n" ).replace( /\n\n+/g, "\n\n" );
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
load("build/js/jsmin.js", "build/js/writeFile.js");
|
load("../jquerybuild/js/jsmin.js", "../jquerybuild/js/writeFile.js");
|
||||||
|
|
||||||
var f = jsmin('', readFile(arguments[0]), 3);
|
var f = jsmin('', readFile(arguments[0]), 3);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
load("build/js/ParseMaster.js", "build/js/pack.js", "build/js/writeFile.js");
|
load("../jquery/build/js/ParseMaster.js", "../jquery/build/js/pack.js", "../jquery/build/js/writeFile.js");
|
||||||
|
|
||||||
var out = readFile( arguments[0] );
|
var out = readFile( arguments[0] );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue