Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for node v10 #70

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix for node v10
  • Loading branch information
viking1304 committed Mar 27, 2023
commit 44869d85edff0519bd8497d6c962408d1fa9b7b8
3 changes: 3 additions & 0 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import path from 'path';
import merge from 'merge-stream';
import beep from 'beepbeep';

// node v10 fix
import 'globalthis/auto';

const $ = plugins();

var dartSass = require('gulp-sass');
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"rimraf": "^2.3.3",
"sass": "^1.35.2",
"siphon-media-query": "^1.0.0",
"yargs": "^4.1.0"
"yargs": "^4.1.0",
"globalthis": "^1.0.3"
},
"babel": {
"presets": [
Expand Down