1
1
Fork 0

Removed live reload in favor of stable builds

This commit is contained in:
Joe Wroten 2017-05-18 06:32:03 -05:00
parent b8290e5103
commit 47483dd0af
2 changed files with 1 additions and 16 deletions

View file

@ -4,8 +4,6 @@ var sass = require('metalsmith-sass');
var layouts = require('metalsmith-layouts'); var layouts = require('metalsmith-layouts');
var collections = require('metalsmith-collections'); var collections = require('metalsmith-collections');
var permalinks = require('metalsmith-permalinks'); var permalinks = require('metalsmith-permalinks');
var serve = require('metalsmith-serve');
var watch = require('metalsmith-watch');
Metalsmith(__dirname) Metalsmith(__dirname)
.metadata({ .metadata({
@ -30,17 +28,6 @@ Metalsmith(__dirname)
engine: 'handlebars', engine: 'handlebars',
partials: 'partials' partials: 'partials'
})) }))
.use(
watch({
paths: {
"src/**/*": "**/*",
"partials/**/*": "**/*",
"layouts/**/*": "**/*"
},
livereload: true,
})
)
.use(serve())
.build(function(err, files) { .build(function(err, files) {
if (err) { throw err; } if (err) { throw err; }
}); });

View file

@ -16,8 +16,6 @@
}, },
"devDependencies": { "devDependencies": {
"metalsmith-collections": "^0.7.0", "metalsmith-collections": "^0.7.0",
"metalsmith-sass": "^1.3.0", "metalsmith-sass": "^1.3.0"
"metalsmith-serve": "0.0.7",
"metalsmith-watch": "^1.0.3"
} }
} }