![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
gulp-combo
Advanced tools
A gulp plugin gulp-combo will combo all scripts and links in a html page.
You can optionally pass a first argument along with the baseUri to override the default baseUri statements. The default baseUri looks like this:
baseUri = 'http://mc.meituan.net/combo/?f=';
You can also optionally pass a second argument along with the options to override the default options statements. The default options looks like this:
{
splitter: ';',
async: false
}
<!DOCTYPE HTML>
<html style="font-size:312.5%">
<head>
<meta charset="UTF-8">
<title>Gulp-combo</title>
<link href="http://mc.meituan.net/touch/css/eve.0c7f2f70.css" rel="stylesheet"/>
<link href="http://mc.meituan.net/touch/css/test.css" rel="stylesheet"/>
</head>
<body>
<script type="text/javascript" src="http://mc.meituan.net/zepto/zepto-1.0.1.min.js"></script>
<script type="text/javascript" src="http://mc.meituan.net/hotel/act/freshmen/js/mjs.js"></script>
<script type="text/javascript">
init();
</script>
</body>
</html>
var gulp = require('gulp'),
combo = require('gulp-combo');
gulp.task('combo', function(){
var baseUri = 'http://mc.meituan.net/combo?f=';
gulp.src('index.html')
.pipe(combo(baseUri, null))
.pipe(gulp.dest('build'));
});
<!DOCTYPE HTML>
<html style="font-size:312.5%">
<head>
<meta charset="UTF-8">
<title>Gulp-combo</title>
<link rel="stylesheet" href="http://mc.meituan.net/combo?f=touch/css/eve.0c7f2f70.css;touch/css/test.css" />
</head>
<body>
<script type="text/javascript" src="http://mc.meituan.net/combo?f=zepto/zepto-1.0.1.min.js;hotel/act/freshmen/js/mjs.js"></script>
<script type="text/javascript">
init();
</script>
</body>
</html>
MIT
FAQs
html scripts, links combo for gulp
The npm package gulp-combo receives a total of 2 weekly downloads. As such, gulp-combo popularity was classified as not popular.
We found that gulp-combo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.