-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81226c0
commit 0ae38a1
Showing
8 changed files
with
258 additions
and
169 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
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,13 +1,13 @@ | ||
/** | ||
* Cross platform clear console | ||
* Cross platform clear console. | ||
* | ||
* Support for win32 and others | ||
* Support for win32 and others. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
module.exports = () => { | ||
const clearConsole = () => { | ||
process.stdout.write( | ||
'win32' === process.platform ? '\x1B[2J\x1B[0f' : '\x1B[2J\x1B[3J\x1B[H' | ||
); | ||
}; | ||
|
||
export { clearConsole }; |
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,7 +1,11 @@ | ||
'use strict'; | ||
/** | ||
* Error handler | ||
*/ | ||
|
||
module.exports = (err) => { | ||
const handleError = (err) => { | ||
if (err) { | ||
console.log('ERROR: ' + err); | ||
} | ||
}; | ||
|
||
export { handleError }; |
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,6 +1,6 @@ | ||
{ | ||
"name": "fuzzymail", | ||
"version": "0.0.9-3", | ||
"version": "0.0.9-4", | ||
"description": "Responsive email template generator.", | ||
"keywords": [ | ||
"boilerplate", | ||
|
@@ -22,31 +22,34 @@ | |
], | ||
"homepage": "https://www.fuzzymail.co", | ||
"repository": "https://github.com/luangjokaj/fuzzymail", | ||
"exports": "./index.js", | ||
"type": "module", | ||
"node": "^12.20.0 || ^14.13.1 || >=16.0.0", | ||
"scripts": { | ||
"dev": "gulp dev", | ||
"prod": "gulp prod" | ||
}, | ||
"author": "Luan Gjokaj <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"autoprefixer": "^10.2.6", | ||
"browser-sync": "^2.26.14", | ||
"autoprefixer": "^10.3.4", | ||
"browser-sync": "^2.27.5", | ||
"cherry-postcss": "^0.0.2-11", | ||
"connect-modrewrite": "^0.10.2", | ||
"cssnano": "^5.0.6", | ||
"cssnano": "^5.0.8", | ||
"del": "^6.0.0", | ||
"gulp": "^4.0.2", | ||
"gulp-file-include": "^2.3.0", | ||
"gulp-htmlmin": "^5.0.1", | ||
"gulp-imagemin": "^7.1.0", | ||
"gulp-imagemin": "^8.0.0", | ||
"gulp-inject-string": "^1.1.2", | ||
"gulp-inline": "^0.1.3", | ||
"gulp-inline-css": "^4.0.0", | ||
"gulp-plumber": "^1.2.1", | ||
"gulp-postcss": "^9.0.0", | ||
"gulp-postcss": "^9.0.1", | ||
"gulp-sourcemaps": "^3.0.0", | ||
"gulp-util": "^3.0.8", | ||
"postcss": "^8.3.4", | ||
"postcss": "^8.3.6", | ||
"postcss-flexbugs-fixes": "^5.0.2", | ||
"postcss-import": "^14.0.2", | ||
"postcss-preset-env": "^6.7.0" | ||
|
Oops, something went wrong.