coffee-time 1.2.0-beta.6 → 1.2.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/coffee-time.js +2 -1
- package/package.json +1 -1
package/bin/coffee-time.js
CHANGED
|
@@ -105,7 +105,8 @@ function formatRemaining(remainingMs) {
|
|
|
105
105
|
function supportsEmoji() {
|
|
106
106
|
return process.env.TERM_PROGRAM === 'Apple_Terminal'
|
|
107
107
|
|| Boolean(process.env.WT_SESSION)
|
|
108
|
-
|| process.env.TERM_PROGRAM === 'vscode'
|
|
108
|
+
|| process.env.TERM_PROGRAM === 'vscode'
|
|
109
|
+
|| process.platform === 'win32';
|
|
109
110
|
}
|
|
110
111
|
|
|
111
112
|
function printCoffeeArt() {
|