From d9a716e766e5ce824e94e2126fb7c90a2ac28591 Mon Sep 17 00:00:00 2001 From: Christopher Geary Date: Thu, 2 Nov 2017 08:48:15 +0000 Subject: [PATCH 1/2] Update Netlify CMS to 0.6 --- static/admin/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/admin/index.html b/static/admin/index.html index cfed0f5..2f7f327 100644 --- a/static/admin/index.html +++ b/static/admin/index.html @@ -7,12 +7,12 @@ Content Manager - + - + From a5389294fe7fec4861bcdd6cea27a648317a5004 Mon Sep 17 00:00:00 2001 From: Christopher Geary Date: Fri, 1 Dec 2017 18:44:54 +0000 Subject: [PATCH 2/2] Don't open the browser when you run `npm run server` --- gulpfile.babel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index d9e3d2a..5add24d 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -21,7 +21,8 @@ gulp.task('server', ['build'], () => { browserSync.init({ server: { baseDir: 'public' - } + }, + open: false }) $.watch('src/sass/**/*.scss', () => gulp.start('sass')) $.watch('src/js/**/*.js', () => gulp.start('js-watch'))