Skip to content

A gulp plugin that will remove all lines that matches one of the given regex filters.

License

Notifications You must be signed in to change notification settings

carstenschaefer/gulp-delete-lines

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-rm-lines

A gulp plugin that will delete all lines that matches one of the given regex filters.

Notes

With respect to Carsten Schäfer's work but now supports multiple filters.

With respect to Rolf Erik Lekang's work but with minor bug fixes.

Install

yarn

yarn add --dev gulp-rm-lines

npm

npm install --save-dev gulp-rm-lines

Examples

Our index.html file:

<!doctype html>
<html>
<head>
  <title>Our App</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <meta name="format-detection" content="telephone=no" />
  
  <link rel="stylesheet" href="vendor/normalize.css/normalize.css" />
  <link rel="stylesheet" href="vendor/font-awesome/css/font-awesome.min.css" />
  <link rel="stylesheet" href="assets/sass/desktop.css" />
  
</head>
<body ng-controller="AppController">
  <div>
      markup goes here...
  </div>
  
  <script src="vendor/jquery/jquery.min.js"></script>
  <script src="vendor/angular/angular.min.js"></script>
  <script src="app/app_Desktop.js"></script>
  
  <script>
    angular.bootstrap(document, ['ourApp']);
  </script>
</body>
</html>

Example

Remove all external scripts and stylesheets from index.html

const gulp = require('gulp'),
  rmLines = require('gulp-rm-lines');

gulp.task('remove-scripts', function () {
  gulp.src('./build/index.html')
   .pipe(rmLines({
      'filters': [
        /<script\s+src=['"]/i,
        /<link\s+rel=['"]stylesheet['"]/i,
      ]
    }))
  .pipe(gulp.dest('dist'));
});

License

MIT © Sam Grundman

About

A gulp plugin that will remove all lines that matches one of the given regex filters.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published