-
-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into perf/create-filter
- Loading branch information
Showing
107 changed files
with
9,860 additions
and
5,938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 12 additions & 5 deletions
17
packages/commonjs/test/fixtures/form/async-function/output.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
import * as commonjsHelpers from "_commonjsHelpers.js"; | ||
|
||
var input = async function () { | ||
// TODO | ||
}; | ||
var input; | ||
var hasRequiredInput; | ||
|
||
export default /*@__PURE__*/commonjsHelpers.getDefaultExportFromCjs(input); | ||
export { input as __moduleExports }; | ||
function requireInput () { | ||
if (hasRequiredInput) return input; | ||
hasRequiredInput = 1; | ||
input = async function () { | ||
// TODO | ||
}; | ||
return input; | ||
} | ||
|
||
export { requireInput as __require }; |
15 changes: 11 additions & 4 deletions
15
packages/commonjs/test/fixtures/form/compiled-esm-assign-exports/output.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
import * as commonjsHelpers from "_commonjsHelpers.js"; | ||
import { __exports as input } from "\u0000fixtures/form/compiled-esm-assign-exports/input.js?commonjs-exports"; | ||
|
||
input.__esModule = true; | ||
var _default = input.default = 'x'; | ||
var foo = input.foo = 'foo'; | ||
var hasRequiredInput; | ||
|
||
export { input as __moduleExports, foo, _default as default }; | ||
function requireInput () { | ||
if (hasRequiredInput) return input; | ||
hasRequiredInput = 1; | ||
input.__esModule = true; | ||
input.default = 'x'; | ||
input.foo = 'foo'; | ||
return input; | ||
} | ||
|
||
export { requireInput as __require }; |
15 changes: 11 additions & 4 deletions
15
packages/commonjs/test/fixtures/form/compiled-esm-assign-module/output.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
import * as commonjsHelpers from "_commonjsHelpers.js"; | ||
import { __exports as input } from "\u0000fixtures/form/compiled-esm-assign-module/input.js?commonjs-exports"; | ||
|
||
input.__esModule = true; | ||
var _default = input.default = 'x'; | ||
var foo = input.foo = 'foo'; | ||
var hasRequiredInput; | ||
|
||
export { input as __moduleExports, foo, _default as default }; | ||
function requireInput () { | ||
if (hasRequiredInput) return input; | ||
hasRequiredInput = 1; | ||
input.__esModule = true; | ||
input.default = 'x'; | ||
input.foo = 'foo'; | ||
return input; | ||
} | ||
|
||
export { requireInput as __require }; |
15 changes: 11 additions & 4 deletions
15
packages/commonjs/test/fixtures/form/compiled-esm-deconflict/output.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
import * as commonjsHelpers from "_commonjsHelpers.js"; | ||
import { __exports as input } from "\u0000fixtures/form/compiled-esm-deconflict/input.js?commonjs-exports"; | ||
|
||
Object.defineProperty(input, '__esModule', { value: true }); | ||
var foo_1 = input.foo = 'bar'; | ||
var hasRequiredInput; | ||
|
||
const foo = 'also bar'; | ||
function requireInput () { | ||
if (hasRequiredInput) return input; | ||
hasRequiredInput = 1; | ||
Object.defineProperty(input, '__esModule', { value: true }); | ||
input.foo = 'bar'; | ||
|
||
export { input as __moduleExports, foo_1 as foo, input as default }; | ||
const foo = 'also bar'; | ||
return input; | ||
} | ||
|
||
export { requireInput as __require }; |
Oops, something went wrong.