Skip to content

Commit

Permalink
Remove the context parameter from the rollup config
Browse files Browse the repository at this point in the history
The "this is undefined" warning has been completely eliminated
by #2831 so the parameter isn't needed anymore.
  • Loading branch information
jgonggrijp committed Mar 30, 2020
1 parent c49312c commit 6b09e0e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion docs/rollup.config.js
@@ -1,7 +1,6 @@
module.exports = {
input: '../modules/index-all.js',
treeshake: false,
context: 'this',
output: {
file: 'underscore.js',
exports: 'named',
Expand Down
1 change: 0 additions & 1 deletion rollup.config.js
@@ -1,7 +1,6 @@
module.exports = {
input: 'modules/index-default.js',
treeshake: false,
context: 'this',
output: {
file: 'underscore.js',
exports: 'default',
Expand Down

0 comments on commit 6b09e0e

Please sign in to comment.