-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(gatsby): upgrade latest-version (#36434)
- Loading branch information
Showing
13 changed files
with
263 additions
and
15 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
3 changes: 3 additions & 0 deletions
3
...s/babel-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/default/input.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,3 @@ | ||
export async function someFunction() { | ||
return await import(`path`); | ||
} |
12 changes: 12 additions & 0 deletions
12
.../babel-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/default/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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"use strict"; | ||
|
||
exports.__esModule = true; | ||
exports.someFunction = someFunction; | ||
|
||
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } | ||
|
||
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } | ||
|
||
async function someFunction() { | ||
return await Promise.resolve().then(() => _interopRequireWildcard(require(`path`))); | ||
} |
17 changes: 17 additions & 0 deletions
17
packages/babel-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/options.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,17 @@ | ||
const path = require("path") | ||
|
||
// "babel-plugin-dynamic-import-node" is used in tests, so we force not a test environment | ||
process.env.BABEL_ENV = `not-a-test` | ||
|
||
module.exports = { | ||
sourceType: "module", | ||
presets: [ | ||
[path.resolve(__dirname, "../../../index.js"), | ||
{ | ||
keepDynamicImports: [`./packages/babel-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/with-override/input.js`] | ||
} | ||
], | ||
], | ||
babelrc: false, | ||
configFile: false, | ||
} |
3 changes: 3 additions & 0 deletions
3
...l-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/with-override/input.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,3 @@ | ||
export async function someFunction2() { | ||
return await import(`path`); | ||
} |
8 changes: 8 additions & 0 deletions
8
...-preset-gatsby-package/lib/__tests__/fixtures/keep-dynamic-import/with-override/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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"use strict"; | ||
|
||
exports.__esModule = true; | ||
exports.someFunction2 = someFunction2; | ||
|
||
async function someFunction2() { | ||
return await import(`path`); | ||
} |
2 changes: 1 addition & 1 deletion
2
...tests__/babel-transform-compiler-flags.js → ...t-gatsby-package/lib/__tests__/plugins.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,3 +1,3 @@ | ||
const runner = require(`@babel/helper-plugin-test-runner`).default | ||
|
||
runner(__dirname) | ||
runner(__dirname ) |
54 changes: 54 additions & 0 deletions
54
packages/babel-preset-gatsby-package/lib/babel-transform-mark-to-keep-dynamic-import.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,54 @@ | ||
const path = require(`path`) | ||
|
||
/** | ||
* @typedef {import('@babel/core').NodePath} NodePath | ||
* @typedef {import('@babel/core').PluginObj} PluginObj | ||
* @typedef {import('@babel/core').PluginPass} PluginPass | ||
* @typedef {import('@babel/core').types} BabelTypes | ||
* @typedef {import('@babel/core').types.Identifier} Identifier | ||
* @typedef {import('@babel/core').types.MemberExpression} MemberExpression | ||
*/ | ||
|
||
/** | ||
* @typedef {Object} IPluginOptions | ||
* @property {Array<string>} keepDynamicImports | ||
*/ | ||
|
||
/** | ||
* | ||
* @param {{ types: BabelTypes }} _unused | ||
* @param {Partial<IPluginOptions>} opts | ||
* @returns {PluginObj} | ||
*/ | ||
module.exports = function keepDynamicImports( | ||
_unused, | ||
opts | ||
) { | ||
if (!opts.keepDynamicImports) { | ||
throw new Error(`keepDynamicImports option needs to be set`) | ||
} else if (!Array.isArray(opts.keepDynamicImports)) { | ||
throw new Error(`keepDynamicImports option needs to be an array`) | ||
} | ||
|
||
const absolutePaths = opts.keepDynamicImports.map(p => path.resolve(p)) | ||
|
||
return { | ||
name: `babel-transform-mark-to-keep-dynamic-import`, | ||
visitor: { | ||
Program() { | ||
const filename = this.file?.opts?.filename | ||
if (!filename) { | ||
return | ||
} | ||
|
||
if (absolutePaths.includes(filename)) { | ||
// this is big hack - it relies on some babel plugins internal to basically | ||
// do early return ( https://github.com/babel/babel/blob/3526b79c87863052f1c61ec0c49c0fc287ba32e6/packages/babel-plugin-transform-modules-commonjs/src/index.ts#L174 ) | ||
// on top of that `BabelFile` doesn't expose delete for the metadata, | ||
// so we reach into internal `_map` to delete it | ||
this.file._map.delete("@babel/plugin-proposal-dynamic-import") | ||
} | ||
} | ||
}, | ||
} | ||
} |
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
Oops, something went wrong.