add browsersync locally

This commit is contained in:
Ray Elliott 2020-05-08 11:11:39 +00:00
parent d4c6dd4c43
commit ac2cea0d8a
2 changed files with 21 additions and 2 deletions

16
package-lock.json generated
View File

@ -2049,6 +2049,11 @@
"pkg-up": "^2.0.0" "pkg-up": "^2.0.0"
} }
}, },
"browsersync": {
"version": "0.0.1-security",
"resolved": "https://registry.npmjs.org/browsersync/-/browsersync-0.0.1-security.tgz",
"integrity": "sha1-6IX+Q1TS7FpWXDjEwr8KASrWSGA="
},
"bs-recipes": { "bs-recipes": {
"version": "1.3.4", "version": "1.3.4",
"resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz", "resolved": "https://registry.npmjs.org/bs-recipes/-/bs-recipes-1.3.4.tgz",
@ -2269,6 +2274,7 @@
"anymatch": "^2.0.0", "anymatch": "^2.0.0",
"async-each": "^1.0.1", "async-each": "^1.0.1",
"braces": "^2.3.2", "braces": "^2.3.2",
"fsevents": "^1.2.7",
"glob-parent": "^3.1.0", "glob-parent": "^3.1.0",
"inherits": "^2.0.3", "inherits": "^2.0.3",
"is-binary-path": "^1.0.0", "is-binary-path": "^1.0.0",
@ -4077,6 +4083,16 @@
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true "dev": true
}, },
"fsevents": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
"dev": true,
"optional": true,
"requires": {
"nan": "^2.12.1"
}
},
"fstream": { "fstream": {
"version": "1.0.12", "version": "1.0.12",
"resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz",

View File

@ -4,7 +4,8 @@
"description": "WordPress Theme framework", "description": "WordPress Theme framework",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"postinstall": "gulp copy-assets" "postinstall": "gulp copy-assets",
"watch-bs": "gulp watch-bs"
}, },
"engines": { "engines": {
"npm": ">=2.1.8" "npm": ">=2.1.8"
@ -26,7 +27,9 @@
"url": "https://github.com/understrap/understrap/issues" "url": "https://github.com/understrap/understrap/issues"
}, },
"homepage": "https://understrap.com", "homepage": "https://understrap.com",
"dependencies": {}, "dependencies": {
"browsersync": "0.0.1-security"
},
"devDependencies": { "devDependencies": {
"@babel/core": "^7.9.0", "@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5", "@babel/preset-env": "^7.9.5",