Skip to content

Commit

Permalink
fix(plugin-legacy): turn off babel loose mode (#3406)
Browse files Browse the repository at this point in the history
  • Loading branch information
nihalgonsalves committed May 17, 2021
1 parent 5fe0550 commit 5348c02
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/playground/legacy/__tests__/legacy.spec.ts
Expand Up @@ -7,3 +7,8 @@ test('should work', async () => {
test('import.meta.env.LEGACY', async () => {
expect(await page.textContent('#env')).toMatch(isBuild ? 'true' : 'false')
})

// https://github.com/vitejs/vite/issues/3400
test('transpiles down iterators correctly', async () => {
expect(await page.textContent('#iterators')).toMatch('hello')
})
1 change: 1 addition & 0 deletions packages/playground/legacy/index.html
@@ -1,3 +1,4 @@
<h1 id="app"></h1>
<div id="env"></div>
<div id="iterators"></div>
<script type="module" src="./main.js"></script>
6 changes: 6 additions & 0 deletions packages/playground/legacy/main.js
Expand Up @@ -15,3 +15,9 @@ if (import.meta.env.LEGACY) {
}

document.getElementById('env').textContent = `is legacy: ${isLegacy}`

// Iterators

document.getElementById('iterators').textContent = [...new Set(['hello'])].join(
''
)
2 changes: 1 addition & 1 deletion packages/plugin-legacy/index.js
Expand Up @@ -263,7 +263,7 @@ function viteLegacyPlugin(options = {}) {
targets,
modules: false,
bugfixes: true,
loose: true,
loose: false,
useBuiltIns: needPolyfills ? 'usage' : false,
corejs: needPolyfills
? { version: 3, proposals: false }
Expand Down

0 comments on commit 5348c02

Please sign in to comment.