-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
extension: allow use of ES2018 features #5377
Changes from all commits
fff8ae1
b338c9b
a951d5d
f043414
2d8fded
1840d4b
8f5f82b
1e7f472
fe79239
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,11 @@ | |
"scripts": { | ||
"watch": "gulp watch", | ||
"build": "gulp build:production", | ||
"debug-build": "node --inspect-brk ./node_modules/.bin/gulp build:production", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure but imo There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe it is, but seeing as the only ndb I have access to is 7 years old https://www.npmjs.com/package/ndb us pleebs have to make due with this 😛 |
||
"test": "mocha test/**/*-test.js" | ||
}, | ||
"devDependencies": { | ||
"acorn": "^5.5.3", | ||
"babel-plugin-syntax-object-rest-spread": "^6.13.0", | ||
"brfs": "^1.6.1", | ||
"browserify": "^16.2.0", | ||
|
@@ -28,7 +30,8 @@ | |
"through2": "^2.0.1" | ||
}, | ||
"resolutions": { | ||
"browserify/insert-module-globals/lexical-scope/astw": "2.2.0" | ||
"browserify/insert-module-globals/lexical-scope/astw": "2.2.0", | ||
"**/astw/acorn": "5.5.3" | ||
}, | ||
"dependencies": {} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't forget about line 202 - 203
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch thanks @underbyte! :)