-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit fixes warnign messages like: "Some code accessed the property 'Processes' on the module 'util'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway."
- Loading branch information
1 parent
aeea331
commit 20b7111
Showing
8 changed files
with
35 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/build | ||
/build | ||
/.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
const REFRESH_INTERVAL = 'refresh-interval'; | ||
const CPU_METER = 'cpu-meter'; | ||
const MEMORY_METER = 'memory-meter'; | ||
const STORAGE_METER = 'storage-meter'; | ||
const NETWORK_METER = 'network-meter'; | ||
const SWAP_METER = 'swap-meter'; | ||
const LOAD_METER = 'load-meter'; | ||
const POSITION = 'position'; | ||
const MEMORY_CALCULATION_METHOD = 'memory-calculation-method'; | ||
var REFRESH_INTERVAL = 'refresh-interval'; | ||
var CPU_METER = 'cpu-meter'; | ||
var MEMORY_METER = 'memory-meter'; | ||
var STORAGE_METER = 'storage-meter'; | ||
var NETWORK_METER = 'network-meter'; | ||
var SWAP_METER = 'swap-meter'; | ||
var LOAD_METER = 'load-meter'; | ||
var POSITION = 'position'; | ||
var MEMORY_CALCULATION_METHOD = 'memory-calculation-method'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters