![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-pre-combo
Advanced tools
Initially, install gulp-pre-combo
as a development dependency:
npm install --save gulp-pre-combo
Then, create task using gulp-pre-combo
, which might look similar as below:
'use strict';
var gulp = require('gulp'),
precombo = require('gulp-pre-combo');
gulp.task('pre-combo', function () {
var repoinfo = require('../../repo-info.json');
gulp.src('src/**/*.html')
.pipe(precombo(repoinfo))
.pipe(gulp.dest('build'));
})
Finally, fire gulp task:
gulp pre-combo
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>abc</title>
<link rel="stylesheet" type="text/css" href="./index.css">
<link rel="stylesheet" type="text/css" href="./index2.css">
<link rel="stylesheet" type="text/css" href="./index3.css" data-ignore="true">
<link rel="stylesheet" type="text/css" href="./index4.css" data-ignore="true">
<link rel="stylesheet" type="text/css" href="./index5.css">
<link rel="stylesheet" type="text/css" href="./index6.css">
</head>
<body>
<!--content-->
<script src="./index.js"></script>
<script src="./index2.js"></script>
</body>
</html>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>abc</title>
<link rel="stylesheet" type="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index.min.css">
<link rel="stylesheet" type="text/css" href="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index2.min.css">
<link rel="stylesheet" type="text/css" href="./index3.css" data-ignore="true">
<link rel="stylesheet" type="text/css" href="./index4.css" data-ignore="true">
<link rel="stylesheet" type="text/css" href="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index5.min.css">
<link rel="stylesheet" type="text/css" href="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index6.min.css">
</head>
<body>
<script src="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index.min.js"></script>
<script src="GROUPNAME/REPONAME/VERSION/PATH/TO/FILE/index2.min.js"></script>
</body>
</html>
FAQs
A gulp plugin to handle relative-path in html file.
The npm package gulp-pre-combo receives a total of 2 weekly downloads. As such, gulp-pre-combo popularity was classified as not popular.
We found that gulp-pre-combo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.