Skip to content

Commit 4a76541

Browse files
committed
feat: migrade dev dep watch-glob with maintained glob-watcher
1 parent bb10785 commit 4a76541

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/build-site.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function buildEverything() {
7171

7272
if (!process.env.BUILD) {
7373
const http_server = require('http-server');
74-
const watchGlob = require('watch-glob');
74+
const watchGlob = require('glob-watcher');
7575

7676
watchGlob('**', buildJekyll);
7777
watchGlob('docs/static/less/*/*.less', buildCSS);

bin/dev-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
'use strict';
44

5-
var watch = require('watch-glob');
5+
var watch = require('glob-watcher');
66
var http_server = require('http-server');
77
const { debounce } = require('lodash');
88
var browserify = require('browserify');

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
"express-pouchdb": "4.2.0",
7777
"find-requires": "1.0.0",
7878
"glob": "7.1.5",
79+
"glob-watcher": "^6.0.0",
7980
"http-server": "0.12.3",
8081
"istanbul": "0.4.5",
8182
"istanbul-coveralls": "1.0.3",
@@ -102,8 +103,7 @@
102103
"tape": "4.13.0",
103104
"terser": "4.8.0",
104105
"throw-max-listeners-error": "1.0.1",
105-
"ua-parser-js": "0.7.24",
106-
"watch-glob": "0.1.3"
106+
"ua-parser-js": "0.7.24"
107107
},
108108
"// greenkeeper": [
109109
"// chai-as-promised is pinned because of breaking changes in 6.0.0",

0 commit comments

Comments
 (0)