Skip to content

Latest commit

 

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-supersede Build Status

Example

index.html

<html>
	<head>
	</head>
	<body>
		<div supersede="helloworld.txt"> </div>
...

helloworld.txt

Hello World!

gulpfile.js

var gulp = require('gulp');
var supersede = require('gulp-supersede');

gulp.task('default', function () {
	gulp.src('index.html')
		.pipe(supersede())
		.pipe(gulp.dest('path'));
});

path/index.html

<html>
	<head>
	</head>
	<body>
	<!-- supersede: helloworld.txt -->
	Hello World!
	<!-- end supersede -->
...

License

MIT © 247even

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages