-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: bump deps * chore: bump core-js * chore: bump es5-shim * chore: buimp @typescript-eslint * chore: bump @rollup/plugin-commonjs * chore: bump deps
- Loading branch information
1 parent
241a0d2
commit 1b1df9b
Showing
40 changed files
with
7,320 additions
and
7,130 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
6 changes: 1 addition & 5 deletions
6
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/amd/main.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,5 @@ | ||
define(['./commonjs', 'external'], (function (commonjs, require$$0) { 'use strict'; | ||
define(['./main2'], (function (main) { 'use strict'; | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); | ||
|
||
})); |
9 changes: 9 additions & 0 deletions
9
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/amd/main2.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
define(['./commonjs', 'external'], (function (commonjs, require$$0) { 'use strict'; | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); | ||
|
||
})); |
8 changes: 1 addition & 7 deletions
8
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/cjs/main.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,10 +1,4 @@ | ||
'use strict'; | ||
|
||
var commonjs = require('./commonjs.js'); | ||
var require$$0 = require('external'); | ||
require('./main2.js'); | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); |
10 changes: 10 additions & 0 deletions
10
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/cjs/main2.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
'use strict'; | ||
|
||
var commonjs = require('./commonjs.js'); | ||
var require$$0 = require('external'); | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); |
5 changes: 1 addition & 4 deletions
5
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/es/main.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,4 +1 @@ | ||
import commonjs from './commonjs.js'; | ||
import require$$0 from 'external'; | ||
|
||
console.log(commonjs, require$$0); | ||
import './main2.js'; |
4 changes: 4 additions & 0 deletions
4
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/es/main2.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import commonjs from './commonjs.js'; | ||
import require$$0 from 'external'; | ||
|
||
console.log(commonjs, require$$0); |
11 changes: 3 additions & 8 deletions
11
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/system/main.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
16 changes: 16 additions & 0 deletions
16
test/chunking-form/samples/deprecated/preserve-modules-commonjs/_expected/system/main2.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
System.register(['./commonjs.js', 'external'], (function () { | ||
'use strict'; | ||
var commonjs, require$$0; | ||
return { | ||
setters: [function (module) { | ||
commonjs = module["default"]; | ||
}, function (module) { | ||
require$$0 = module["default"]; | ||
}], | ||
execute: (function () { | ||
|
||
console.log(commonjs, require$$0); | ||
|
||
}) | ||
}; | ||
})); |
6 changes: 1 addition & 5 deletions
6
test/chunking-form/samples/preserve-modules-commonjs/_expected/amd/main.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,5 @@ | ||
define(['./commonjs', 'external'], (function (commonjs, require$$0) { 'use strict'; | ||
define(['./main2'], (function (main) { 'use strict'; | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); | ||
|
||
})); |
9 changes: 9 additions & 0 deletions
9
test/chunking-form/samples/preserve-modules-commonjs/_expected/amd/main2.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
define(['./commonjs', 'external'], (function (commonjs, require$$0) { 'use strict'; | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); | ||
|
||
})); |
8 changes: 1 addition & 7 deletions
8
test/chunking-form/samples/preserve-modules-commonjs/_expected/cjs/main.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,10 +1,4 @@ | ||
'use strict'; | ||
|
||
var commonjs = require('./commonjs.js'); | ||
var require$$0 = require('external'); | ||
require('./main2.js'); | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); |
10 changes: 10 additions & 0 deletions
10
test/chunking-form/samples/preserve-modules-commonjs/_expected/cjs/main2.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
'use strict'; | ||
|
||
var commonjs = require('./commonjs.js'); | ||
var require$$0 = require('external'); | ||
|
||
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } | ||
|
||
var require$$0__default = /*#__PURE__*/_interopDefaultLegacy(require$$0); | ||
|
||
console.log(commonjs, require$$0__default["default"]); |
5 changes: 1 addition & 4 deletions
5
test/chunking-form/samples/preserve-modules-commonjs/_expected/es/main.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,4 +1 @@ | ||
import commonjs from './commonjs.js'; | ||
import require$$0 from 'external'; | ||
|
||
console.log(commonjs, require$$0); | ||
import './main2.js'; |
4 changes: 4 additions & 0 deletions
4
test/chunking-form/samples/preserve-modules-commonjs/_expected/es/main2.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import commonjs from './commonjs.js'; | ||
import require$$0 from 'external'; | ||
|
||
console.log(commonjs, require$$0); |
11 changes: 3 additions & 8 deletions
11
test/chunking-form/samples/preserve-modules-commonjs/_expected/system/main.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
16 changes: 16 additions & 0 deletions
16
test/chunking-form/samples/preserve-modules-commonjs/_expected/system/main2.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
System.register(['./commonjs.js', 'external'], (function () { | ||
'use strict'; | ||
var commonjs, require$$0; | ||
return { | ||
setters: [function (module) { | ||
commonjs = module["default"]; | ||
}, function (module) { | ||
require$$0 = module["default"]; | ||
}], | ||
execute: (function () { | ||
|
||
console.log(commonjs, require$$0); | ||
|
||
}) | ||
}; | ||
})); |
8 changes: 2 additions & 6 deletions
8
test/chunking-form/samples/preserve-modules-root/_expected/amd/below/module.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,11 +1,7 @@ | ||
define(['../custom_modules/@my-scope/my-base-pkg/index', '../_virtual/index'], (function (index$1, index) { 'use strict'; | ||
define(['./module2'], (function (module) { 'use strict'; | ||
|
||
const base2 = index.__exports; | ||
|
||
var module = { | ||
base2, | ||
}; | ||
|
||
return module; | ||
return module; | ||
|
||
})); |
11 changes: 11 additions & 0 deletions
11
test/chunking-form/samples/preserve-modules-root/_expected/amd/below/module2.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
define(['../custom_modules/@my-scope/my-base-pkg/index', '../_virtual/index'], (function (index$1, index) { 'use strict'; | ||
|
||
const base2 = index.__exports; | ||
|
||
var module = { | ||
base2, | ||
}; | ||
|
||
return module; | ||
|
||
})); |
6 changes: 1 addition & 5 deletions
6
test/chunking-form/samples/preserve-modules-root/_expected/amd/under-build.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
11 changes: 11 additions & 0 deletions
11
test/chunking-form/samples/preserve-modules-root/_expected/amd/under-build2.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
define(['./custom_modules/@my-scope/my-base-pkg/index', './_virtual/index'], (function (index$1, index) { 'use strict'; | ||
|
||
const base = index.__exports; | ||
|
||
var underBuild = { | ||
base | ||
}; | ||
|
||
return underBuild; | ||
|
||
})); |
7 changes: 1 addition & 6 deletions
7
test/chunking-form/samples/preserve-modules-root/_expected/cjs/below/module.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,12 +1,7 @@ | ||
'use strict'; | ||
|
||
require('../custom_modules/@my-scope/my-base-pkg/index.js'); | ||
var index = require('../_virtual/index.js'); | ||
var module$1 = require('./module2.js'); | ||
|
||
const base2 = index.__exports; | ||
|
||
var module$1 = { | ||
base2, | ||
}; | ||
|
||
module.exports = module$1; |
12 changes: 12 additions & 0 deletions
12
test/chunking-form/samples/preserve-modules-root/_expected/cjs/below/module2.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
'use strict'; | ||
|
||
require('../custom_modules/@my-scope/my-base-pkg/index.js'); | ||
var index = require('../_virtual/index.js'); | ||
|
||
const base2 = index.__exports; | ||
|
||
var module$1 = { | ||
base2, | ||
}; | ||
|
||
module.exports = module$1; |
7 changes: 1 addition & 6 deletions
7
test/chunking-form/samples/preserve-modules-root/_expected/cjs/under-build.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,12 +1,7 @@ | ||
'use strict'; | ||
|
||
require('./custom_modules/@my-scope/my-base-pkg/index.js'); | ||
var index = require('./_virtual/index.js'); | ||
var underBuild = require('./under-build2.js'); | ||
|
||
const base = index.__exports; | ||
|
||
var underBuild = { | ||
base | ||
}; | ||
|
||
module.exports = underBuild; |
12 changes: 12 additions & 0 deletions
12
test/chunking-form/samples/preserve-modules-root/_expected/cjs/under-build2.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
'use strict'; | ||
|
||
require('./custom_modules/@my-scope/my-base-pkg/index.js'); | ||
var index = require('./_virtual/index.js'); | ||
|
||
const base = index.__exports; | ||
|
||
var underBuild = { | ||
base | ||
}; | ||
|
||
module.exports = underBuild; |
11 changes: 1 addition & 10 deletions
11
test/chunking-form/samples/preserve-modules-root/_expected/es/below/module.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,10 +1 @@ | ||
import '../custom_modules/@my-scope/my-base-pkg/index.js'; | ||
import { __exports as myBasePkg } from '../_virtual/index.js'; | ||
|
||
const base2 = myBasePkg; | ||
|
||
var module = { | ||
base2, | ||
}; | ||
|
||
export { module as default }; | ||
export { default } from './module2.js'; |
10 changes: 10 additions & 0 deletions
10
test/chunking-form/samples/preserve-modules-root/_expected/es/below/module2.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import '../custom_modules/@my-scope/my-base-pkg/index.js'; | ||
import { __exports as myBasePkg } from '../_virtual/index.js'; | ||
|
||
const base2 = myBasePkg; | ||
|
||
var module = { | ||
base2, | ||
}; | ||
|
||
export { module as default }; |
11 changes: 1 addition & 10 deletions
11
test/chunking-form/samples/preserve-modules-root/_expected/es/under-build.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,10 +1 @@ | ||
import './custom_modules/@my-scope/my-base-pkg/index.js'; | ||
import { __exports as myBasePkg } from './_virtual/index.js'; | ||
|
||
const base = myBasePkg; | ||
|
||
var underBuild = { | ||
base | ||
}; | ||
|
||
export { underBuild as default }; | ||
export { default } from './under-build2.js'; |
10 changes: 10 additions & 0 deletions
10
test/chunking-form/samples/preserve-modules-root/_expected/es/under-build2.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import './custom_modules/@my-scope/my-base-pkg/index.js'; | ||
import { __exports as myBasePkg } from './_virtual/index.js'; | ||
|
||
const base = myBasePkg; | ||
|
||
var underBuild = { | ||
base | ||
}; | ||
|
||
export { underBuild as default }; |
Oops, something went wrong.