From 3ecf19df49e4df3f8c40f11dc98258d94f98f8f7 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 25 Sep 2015 17:38:51 +0100 Subject: [PATCH] Disable caching on the local http server as commented --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 002c0661d4..74cfe58bed 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,8 @@ "build": "npm run build:css && npm run build:compile && npm run build:bundle", "start:js": "webpack -w src/vector/index.js vector/bundle.js", "start:skins:css": "catw 'src/skins/vector/css/**/*.css' -o vector/bundle.css", - "start": "parallelshell 'npm run start:js' 'npm run start:skins:css' 'http-server vector'", + "//cache": "Note the -c 1 below due to https://code.google.com/p/chromium/issues/detail?id=508270", + "start": "parallelshell 'npm run start:js' 'npm run start:skins:css' 'http-server -c 1 vector'", "clean": "rimraf lib vector/bundle.css vector/bundle.js vector/bundle.js.map", "prepublish": "npm run build:css && npm run build:compile" },