Migrate to LittleFS under ESP8266
Make ESP8266 use LittleFS instead of deprecated SPIFFS Make framework use the correct filesystem automatically and handle the call the FS.begin() Change default MQTT keepalive to 60 seconds Fix lodash security issue
This commit is contained in:
		| @@ -9,7 +9,7 @@ const fs = require('fs'); | ||||
|  | ||||
| module.exports = function override(config, env) { | ||||
|   if (env === "production") { | ||||
|     // rename the ouput file, we need it's path to be short, for SPIFFS | ||||
|     // rename the ouput file, we need it's path to be short, for embedded FS | ||||
|     config.output.filename = 'js/[id].[chunkhash:4].js'; | ||||
|     config.output.chunkFilename = 'js/[id].[chunkhash:4].js'; | ||||
|  | ||||
|   | ||||
							
								
								
									
										6
									
								
								interface/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										6
									
								
								interface/package-lock.json
									
									
									
										generated
									
									
									
								
							| @@ -8257,9 +8257,9 @@ | ||||
|       } | ||||
|     }, | ||||
|     "lodash": { | ||||
|       "version": "4.17.15", | ||||
|       "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", | ||||
|       "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" | ||||
|       "version": "4.17.19", | ||||
|       "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", | ||||
|       "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" | ||||
|     }, | ||||
|     "lodash._reinterpolate": { | ||||
|       "version": "3.0.0", | ||||
|   | ||||
| @@ -6,7 +6,7 @@ | ||||
|     "@material-ui/core": "^4.9.8", | ||||
|     "@material-ui/icons": "^4.9.1", | ||||
|     "@types/jwt-decode": "^2.2.1", | ||||
|     "@types/lodash": "^4.14.149", | ||||
|     "@types/lodash": "^4.14.157", | ||||
|     "@types/node": "^12.12.32", | ||||
|     "@types/react": "^16.9.27", | ||||
|     "@types/react-dom": "^16.9.5", | ||||
| @@ -15,7 +15,7 @@ | ||||
|     "@types/react-router-dom": "^5.1.3", | ||||
|     "compression-webpack-plugin": "^4.0.0", | ||||
|     "jwt-decode": "^2.2.0", | ||||
|     "lodash": "^4.17.15", | ||||
|     "lodash": "^4.17.19", | ||||
|     "mime-types": "^2.1.25", | ||||
|     "moment": "^2.26.0", | ||||
|     "notistack": "^0.9.17", | ||||
|   | ||||
		Reference in New Issue
	
	Block a user