前端代码
This commit is contained in:
1
node_modules/bs-recipes/recipes/gulp.swig/.npmignore
generated
vendored
Normal file
1
node_modules/bs-recipes/recipes/gulp.swig/.npmignore
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
dist/
|
2
node_modules/bs-recipes/recipes/gulp.swig/app/css/main.css
generated
vendored
Normal file
2
node_modules/bs-recipes/recipes/gulp.swig/app/css/main.css
generated
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
body {
|
||||
background: white; }
|
11
node_modules/bs-recipes/recipes/gulp.swig/app/index.html
generated
vendored
Normal file
11
node_modules/bs-recipes/recipes/gulp.swig/app/index.html
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Browsersync, Gulp + Swig templates</title>
|
||||
<link rel='stylesheet' href='css/main.css'>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Browsersync, Gulp + Swig templates</h1>
|
||||
</body>
|
||||
</html>
|
3
node_modules/bs-recipes/recipes/gulp.swig/app/scss/main.scss
generated
vendored
Normal file
3
node_modules/bs-recipes/recipes/gulp.swig/app/scss/main.scss
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
body {
|
||||
background: white;
|
||||
}
|
3
node_modules/bs-recipes/recipes/gulp.swig/desc.md
generated
vendored
Normal file
3
node_modules/bs-recipes/recipes/gulp.swig/desc.md
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
This example will build HTML files from `./app` with `gulp-swig`
|
||||
and place them into the `dist` folder. Browsersync then serves from that
|
||||
folder and reloads after the templates are compiled.
|
40
node_modules/bs-recipes/recipes/gulp.swig/gulpfile.js
generated
vendored
Normal file
40
node_modules/bs-recipes/recipes/gulp.swig/gulpfile.js
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
var gulp = require('gulp');
|
||||
var browserSync = require('browser-sync');
|
||||
var sass = require('gulp-sass');
|
||||
var swig = require('gulp-swig');
|
||||
var reload = browserSync.reload;
|
||||
|
||||
var src = {
|
||||
scss: 'app/scss/*.scss',
|
||||
css: 'app/css',
|
||||
html: 'app/*.html'
|
||||
};
|
||||
|
||||
// Static Server + watching scss/html files
|
||||
gulp.task('serve', ['sass'], function() {
|
||||
|
||||
browserSync({
|
||||
server: "./dist"
|
||||
});
|
||||
|
||||
gulp.watch(src.scss, ['sass']);
|
||||
gulp.watch(src.html, ['templates']);
|
||||
});
|
||||
|
||||
// Swig templates
|
||||
gulp.task('templates', function() {
|
||||
return gulp.src(src.html)
|
||||
.pipe(swig())
|
||||
.pipe(gulp.dest('./dist'))
|
||||
.on("end", reload);
|
||||
});
|
||||
|
||||
// Compile sass into CSS
|
||||
gulp.task('sass', function() {
|
||||
return gulp.src(src.scss)
|
||||
.pipe(sass())
|
||||
.pipe(gulp.dest(src.css))
|
||||
.pipe(reload({stream: true}));
|
||||
});
|
||||
|
||||
gulp.task('default', ['serve']);
|
17
node_modules/bs-recipes/recipes/gulp.swig/package.json
generated
vendored
Normal file
17
node_modules/bs-recipes/recipes/gulp.swig/package.json
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "gulp.swig",
|
||||
"version": "1.0.0",
|
||||
"description": "Gulp & Swig Templates",
|
||||
"main": "gulpfile.js",
|
||||
"scripts": {
|
||||
"start": "gulp"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.2.0",
|
||||
"gulp": "^3.8.11",
|
||||
"gulp-sass": "^1.3.3",
|
||||
"gulp-swig": "^0.7.4"
|
||||
}
|
||||
}
|
77
node_modules/bs-recipes/recipes/gulp.swig/readme.md
generated
vendored
Normal file
77
node_modules/bs-recipes/recipes/gulp.swig/readme.md
generated
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
#Browsersync - Gulp & Swig Templates
|
||||
|
||||
## Installation/Usage:
|
||||
|
||||
To try this example, follow these 4 simple steps.
|
||||
|
||||
**Step 1**: Clone this entire repo
|
||||
```bash
|
||||
$ git clone https://github.com/Browsersync/recipes.git bs-recipes
|
||||
```
|
||||
|
||||
**Step 2**: Move into the directory containing this example
|
||||
```bash
|
||||
$ cd bs-recipes/recipes/gulp.swig
|
||||
```
|
||||
|
||||
**Step 3**: Install dependencies
|
||||
```bash
|
||||
$ npm install
|
||||
```
|
||||
|
||||
**Step 4**: Run the example
|
||||
```bash
|
||||
$ npm start
|
||||
```
|
||||
|
||||
### Additional Info:
|
||||
|
||||
This example will build HTML files from `./app` with `gulp-swig`
|
||||
and place them into the `dist` folder. Browsersync then serves from that
|
||||
folder and reloads after the templates are compiled.
|
||||
|
||||
### Preview of `gulpfile.js`:
|
||||
```js
|
||||
var gulp = require('gulp');
|
||||
var browserSync = require('browser-sync');
|
||||
var sass = require('gulp-sass');
|
||||
var swig = require('gulp-swig');
|
||||
var reload = browserSync.reload;
|
||||
|
||||
var src = {
|
||||
scss: 'app/scss/*.scss',
|
||||
css: 'app/css',
|
||||
html: 'app/*.html'
|
||||
};
|
||||
|
||||
// Static Server + watching scss/html files
|
||||
gulp.task('serve', ['sass'], function() {
|
||||
|
||||
browserSync({
|
||||
server: "./dist"
|
||||
});
|
||||
|
||||
gulp.watch(src.scss, ['sass']);
|
||||
gulp.watch(src.html, ['templates']);
|
||||
});
|
||||
|
||||
// Swig templates
|
||||
gulp.task('templates', function() {
|
||||
return gulp.src(src.html)
|
||||
.pipe(swig())
|
||||
.pipe(gulp.dest('./dist'))
|
||||
.on("end", reload);
|
||||
});
|
||||
|
||||
// Compile sass into CSS
|
||||
gulp.task('sass', function() {
|
||||
return gulp.src(src.scss)
|
||||
.pipe(sass())
|
||||
.pipe(gulp.dest(src.css))
|
||||
.pipe(reload({stream: true}));
|
||||
});
|
||||
|
||||
gulp.task('default', ['serve']);
|
||||
|
||||
```
|
||||
|
Reference in New Issue
Block a user