forked from vaadin/vaadin-lumo-styles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Node 12+ crashes
gulp icons
, requires gulp-^4.0.0
Fix vaadin#85 * gulp-^4.0.0 is provided by @vaadin/vaadin-component-dev-dependencies-^2.0.0 * .eslintrc.json: `async` functions require `parserOptions.ecmaVersion = 8` * Gulpfile: Gulp 4 task architecture uses `gulp.series()` and `.parallel()` async strategy We use `.parallel()` only for lint tasks operating on distinct file sets * Gulpfile: add simple `.on('error')` report callbacks to task pipelines missing such, avoid `events.js unhandled 'error' event` warnings if any pipeline reports errors * Gulpfile: on Linux, `base64` requires explicit `-w 0` to disable line wrapping @todo Not sure why `font-icons.html` output produces a reverse of unicode characters for `--lumo-icons-eye` vs `--lumo-icons-eye-disabled` Is the original commit faulty perhaps? @todo Test for vaadin#66
- Loading branch information
Showing
4 changed files
with
33 additions
and
17 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 |
---|---|---|
|
@@ -5,6 +5,9 @@ | |
"node": true, | ||
"es6": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 8 | ||
}, | ||
"plugins": [ | ||
"html" | ||
], | ||
|
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