Skip to content

Commit

Permalink
feat: migrade dev dep watch-glob with maintained glob-watcher
Browse files Browse the repository at this point in the history
  • Loading branch information
janl committed Apr 29, 2024
1 parent bb10785 commit 4a76541
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/build-site.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function buildEverything() {

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

watchGlob('**', buildJekyll);
watchGlob('docs/static/less/*/*.less', buildCSS);
Expand Down
2 changes: 1 addition & 1 deletion bin/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

'use strict';

var watch = require('watch-glob');
var watch = require('glob-watcher');
var http_server = require('http-server');
const { debounce } = require('lodash');
var browserify = require('browserify');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"express-pouchdb": "4.2.0",
"find-requires": "1.0.0",
"glob": "7.1.5",
"glob-watcher": "^6.0.0",
"http-server": "0.12.3",
"istanbul": "0.4.5",
"istanbul-coveralls": "1.0.3",
Expand All @@ -102,8 +103,7 @@
"tape": "4.13.0",
"terser": "4.8.0",
"throw-max-listeners-error": "1.0.1",
"ua-parser-js": "0.7.24",
"watch-glob": "0.1.3"
"ua-parser-js": "0.7.24"
},
"// greenkeeper": [
"// chai-as-promised is pinned because of breaking changes in 6.0.0",
Expand Down

0 comments on commit 4a76541

Please sign in to comment.