Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Docs: Remove leftover babel-polyfill references (#419)
Browse files Browse the repository at this point in the history
Since the option was removed in #315.
  • Loading branch information
edmorley authored and eliperelman committed Nov 8, 2017
1 parent 262a7bf commit 1aa7f53
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/customization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ module.exports = {
}],

['neutrino-preset-react', {
polyfills: { babel: false },
polyfills: { async: false },
html: { title: 'Epic React App' }
}],

Expand Down
2 changes: 1 addition & 1 deletion docs/middleware/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ module.exports = {
'neutrino-preset-airbnb-base',

// array format
['neutrino-preset-react', { polyfills: { babel: false } }],
['neutrino-preset-react', { polyfills: { async: false } }],

// function format
(neutrino) => {
Expand Down
4 changes: 1 addition & 3 deletions docs/presets/neutrino-preset-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,7 @@ module.exports = {

polyfills: {
// Enables fast-async polyfill. Set to false to disable
async: true,
// Enables babel-polyfill. Set to false to disable
babel: true
async: true
},

// Change options related to generating the HTML document
Expand Down
4 changes: 1 addition & 3 deletions packages/neutrino-preset-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,7 @@ module.exports = {

polyfills: {
// Enables fast-async polyfill. Set to false to disable
async: true,
// Enables babel-polyfill. Set to false to disable
babel: true
async: true
},

// Change options related to generating the HTML document
Expand Down

0 comments on commit 1aa7f53

Please sign in to comment.