mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
21 lines
658 B
JavaScript
21 lines
658 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var print = require( "sys" ).print,
|
|
fs = require( "fs" ),
|
|
src = fs.readFileSync( process.argv[2], "utf8" ),
|
|
version = fs.readFileSync( "version.txt", "utf8" ),
|
|
// License Template
|
|
license = "/*! jQuery v@VERSION http://jquery.com/ | http://jquery.org/license */";
|
|
|
|
|
|
// Previously done in sed but reimplemented here due to portability issues
|
|
src = src.replace( /^(\s*\*\/)(.+)/m, "$1\n$2" ) + ";";
|
|
|
|
// Set minimal license block var
|
|
license = license.replace( "@VERSION", version );
|
|
|
|
// Replace license block with minimal license
|
|
src = src.replace( /\/\/.*?\/?\*.+?(?=\n|\r|$)|\/\*[\s\S]*?\/\/[\s\S]*?\*\//, license );
|
|
|
|
print( src );
|