A new start

This commit is contained in:
2018-11-24 14:43:59 +01:00
commit 3c32c8a37a
24054 changed files with 1376258 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
</head>
<body>
<!--=include test-with-unicode-BOM.html -->
</body>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test</title>
</head>
<body>
<!--=include test.html -->
<!-- = include test.html -->
<!--=include test.html-->
<!-- =include test.html-->
<!-- =require test.html -->
<!-- = this is a comment without an include that happens to match -->
</body>
</html>

View File

@@ -0,0 +1 @@
<div>This is a test</div>

View File

@@ -0,0 +1 @@
<div>This is a test<div>

View File

@@ -0,0 +1,3 @@
// basic-include.js
/*= include deep_path/b.js */
// = include "deep_path/deeper_path/c.js"

View File

@@ -0,0 +1,24 @@
/*
This is a big dummy project file to test out lots of features of gulp-include
working together in harmony.
*/
/*
I'm going to be crazy and import some files inline here in a list.
//=include deep_path/b.js
//=include deep_path/deeper_path/c.js
//=require deep_path/b.js
//=require deep_path/deeper_path/c.js
//=include deep_path/b.js
//=include deep_path/deeper_path/c.js
//=require deep_path/b.js
//=require deep_path/deeper_path/c.js
#=include deep_path/b.js
#=include deep_path/deeper_path/c.js
#=require deep_path/b.js
#=require deep_path/deeper_path/c.js
*/
// This is an inline comment
// Tree inclusion
//=include deep_path/**/*.js

View File

@@ -0,0 +1 @@
// b.js

View File

@@ -0,0 +1 @@
// c.js

View File

@@ -0,0 +1 @@
Lorem ipsum

View File

@@ -0,0 +1 @@
//=include this-path-does-not-exist.js

View File

@@ -0,0 +1,4 @@
//= include a.js
//= include deeper/b.js
//= include another-include-path.js
//= include third-include-path-file.js

View File

@@ -0,0 +1 @@
// include-path a.js

View File

@@ -0,0 +1 @@
// include-path b.js

View File

@@ -0,0 +1 @@
// another include path file

View File

@@ -0,0 +1 @@
// third include path file

View File

@@ -0,0 +1,2 @@
// include-trees.js
//=include deep_path/**/*.js

View File

@@ -0,0 +1,5 @@
// options-extensions.js
//=include deep_path/b.js
/*
//=include deep_path/text.txt
/*

View File

@@ -0,0 +1,4 @@
// Recursive inclusion
//=include recursive/recursive-one.js
// Above should be b.js and c.js

View File

@@ -0,0 +1 @@
// recursive-three.js

View File

@@ -0,0 +1,2 @@
// recursive-two.js
//=include deepest/recursive-three.js

View File

@@ -0,0 +1,4 @@
// recursive-one.js
//= include ../deep_path/b.js
//= include ../deep_path/deeper_path/c.js
//= include deeper/recursive-two.js

View File

@@ -0,0 +1,7 @@
// whitespace.js
//= include deep_path/b.js
//= include deep_path/deeper_path/c.js
//=include whitespace/a.js
// Should be indented below
//=include whitespace/a.js

View File

@@ -0,0 +1,5 @@
// 2 spaces over
// 4 spaces over
// No spaces over
// 8 spaces over