Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: import-js/eslint-plugin-import
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.21.2
Choose a base ref
...
head repository: import-js/eslint-plugin-import
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.22.0
Choose a head ref

Commits on Jun 11, 2020

  1. Copy the full SHA
    ec5195e View commit details
  2. [New] no-unused-modules: consider exported TypeScript interfaces, t…

    …ypes and enums
    
    Fixes #1680
    
    Co-authored-by: e020873 <nicolas.henry-partner@arcelormittal.com>
    Co-authored-by: Jordan Harband <ljharb@gmail.com>
    nicolashenry and ljharb committed Jun 11, 2020
    Copy the full SHA
    54eb51b View commit details

Commits on Jun 12, 2020

  1. [Fix] no-extraneous-dependencies/TypeScript: do not error when impo…

    …rting type from dev dependencies
    
    Fixes #1618.
    fernandopasik authored and ljharb committed Jun 12, 2020
    Copy the full SHA
    1f7422d View commit details
  2. [Fix] default: avoid crash with export =

    Fixes #1818.
    
    Co-authored-by: AndrewLeedham <AndrewLeedham@Outlook.com>
    Co-authored-by: Jordan Harband <ljharb@gmail.com>
    AndrewLeedham and ljharb committed Jun 12, 2020
    Copy the full SHA
    b22a183 View commit details
  3. [Fix] order/TypeScript: properly support import = object expressions

    Just like ordinary `import x =` expressions, `export import x =` expressions can come with a number of different module-references.
    Either a require-expression such as `export import fs = require("fs")`, a literal such as `export import Console = console;` or an object-path `export import log = console.log`.
    
    This means, that the `isExport` property merely says whether the `TSImportEqualsDeclaration` has a leading `export`, but not what the `moduleReference` looks like.
    
    ----
    
    This arguably is a semver-minor, but since it should have been included in #1785, I'm calling this a bugfix.
    
    Fixes #1821. Fixes #1808.
    manuth authored and ljharb committed Jun 12, 2020
    Copy the full SHA
    f5d95e8 View commit details

Commits on Jun 13, 2020

  1. Copy the full SHA
    f7c7d79 View commit details
  2. Copy the full SHA
    6f5d95a View commit details

Commits on Jun 16, 2020

  1. [resolvers/webpack] v0.12.2

    ljharb committed Jun 16, 2020
    Copy the full SHA
    44b42c0 View commit details
  2. [resolvers/node] v0.3.4

    ljharb committed Jun 16, 2020
    Copy the full SHA
    4a38ef4 View commit details

Commits on Jun 19, 2020

  1. [Fix] order/newline-after-import: ignore TypeScript's "export imp…

    …ort object"
    
    Co-authored-by: be5invis <belleve@typeof.net>
    Co-authored-by: Manuel Thalmann <m@nuth.ch>
    2 people authored and ljharb committed Jun 19, 2020
    Copy the full SHA
    2962628 View commit details
  2. Copy the full SHA
    c38b169 View commit details

Commits on Jun 20, 2020

  1. [Fix] dynamic-import-chunkname/TypeScript: support `@typescript-esl…

    …int/parser`
    
    Fixes #1771.
    noelebrun authored and ljharb committed Jun 20, 2020
    Copy the full SHA
    4d6c539 View commit details

Commits on Jun 22, 2020

  1. Copy the full SHA
    bfc50b7 View commit details

Commits on Jun 23, 2020

  1. [docs] no-default-export: Fix docs url

    Added docsUrl to no-default-export rule
    
    Closes #1769
    
    Signed-off-by: Beatriz Rezener <beatrizrezener@gmail.com>
    beatrizrezener authored and ljharb committed Jun 23, 2020
    Copy the full SHA
    2468f10 View commit details
  2. [docs] imports-first: deprecation info and link to first docs

    Closes #1638.
    
    Signed-off-by: Beatriz Rezener <beatrizrezener@gmail.com>
    beatrizrezener authored and ljharb committed Jun 23, 2020
    Copy the full SHA
    a6cd6bd View commit details
  3. Copy the full SHA
    a963e8d View commit details
  4. Copy the full SHA
    b944e94 View commit details
  5. Copy the full SHA
    07dc92a View commit details
  6. Copy the full SHA
    7ceae48 View commit details
  7. Copy the full SHA
    36a535b View commit details

Commits on Jun 27, 2020

  1. Bump to v2.22.0

    ljharb committed Jun 27, 2020
    Copy the full SHA
    878ce6e View commit details
Showing with 933 additions and 180 deletions.
  1. +1 −0 .babelrc
  2. +1 −0 .eslintrc.yml
  3. +3 −0 .travis.yml
  4. +41 −1 CHANGELOG.md
  5. +3 −0 docs/rules/imports-first.md
  6. +1 −1 docs/rules/no-cycle.md
  7. +7 −2 docs/rules/order.md
  8. +2 −2 package.json
  9. +8 −0 resolvers/node/CHANGELOG.md
  10. +1 −1 resolvers/node/package.json
  11. +1 −1 resolvers/node/test/native.js
  12. +9 −0 resolvers/webpack/CHANGELOG.md
  13. +1 −1 resolvers/webpack/package.json
  14. +3 −1 src/ExportMap.js
  15. +62 −55 src/rules/dynamic-import-chunkname.js
  16. +7 −2 src/rules/export.js
  17. +37 −34 src/rules/namespace.js
  18. +6 −1 src/rules/newline-after-import.js
  19. +13 −5 src/rules/no-cycle.js
  20. +5 −1 src/rules/no-default-export.js
  21. +1 −1 src/rules/no-extraneous-dependencies.js
  22. +31 −26 src/rules/no-unused-modules.js
  23. +52 −35 src/rules/order.js
  24. +1 −0 tests/files/color.js
  25. +1 −0 tests/files/named-export-collision/a.js
  26. +1 −0 tests/files/named-export-collision/b.js
  27. +6 −1 tests/files/no-unused-modules/typescript/file-ts-a.ts
  28. +1 −0 tests/files/no-unused-modules/typescript/file-ts-c.ts
  29. +1 −0 tests/files/no-unused-modules/typescript/file-ts-d.ts
  30. +1 −0 tests/files/no-unused-modules/typescript/file-ts-e.ts
  31. +1 −0 tests/files/typescript-export-assign-function.ts
  32. +5 −0 tests/files/with-typescript-dev-dependencies/package.json
  33. +2 −2 tests/src/cli.js
  34. +8 −0 tests/src/rules/default.js
  35. +307 −1 tests/src/rules/dynamic-import-chunkname.js
  36. +21 −0 tests/src/rules/export.js
  37. +17 −0 tests/src/rules/namespace.js
  38. +18 −0 tests/src/rules/newline-after-import.js
  39. +10 −0 tests/src/rules/no-cycle.js
  40. +79 −3 tests/src/rules/no-extraneous-dependencies.js
  41. +72 −1 tests/src/rules/no-unused-modules.js
  42. +85 −2 tests/src/rules/order.js
1 change: 1 addition & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"presets": [ "es2015-argon" ],
"sourceMaps": "inline",
"retainLines": true,
"env": {
"test": {
"plugins": [
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -20,6 +20,7 @@ rules:
semi: [2, "never"]
curly: [2, "multi-line"]
comma-dangle: [2, always-multiline]
eol-last: [2, "always"]
eqeqeq: [2, "allow-null"]
no-shadow: 1
quotes:
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -23,6 +23,9 @@ matrix:
include:
- env: LINT=true
node_js: lts/*
- env: TS_PARSER=2 ESLINT_VERSION=7
node_js: lts/*
before_script: 'npm install --no-save @typescript-eslint/parser@2'
- env: PACKAGE=resolvers/node
node_js: 14
- env: PACKAGE=resolvers/node
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -6,6 +6,26 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel

## [Unreleased]

## [2.22.0] - 2020-06-26
### Added
- [`no-unused-modules`]: consider exported TypeScript interfaces, types and enums ([#1819], thanks [@nicolashenry])
- [`no-cycle`]: allow `maxDepth` option to be `"∞"` (thanks [@ljharb])

### Fixed
- [`order`]/TypeScript: properly support `import = object` expressions ([#1823], thanks [@manuth])
- [`no-extraneous-dependencies`]/TypeScript: do not error when importing type from dev dependencies ([#1820], thanks [@fernandopasik])
- [`default`]: avoid crash with `export =` ([#1822], thanks [@AndrewLeedham])
- [`order`]/[`newline-after-import`]: ignore TypeScript's "export import object" ([#1830], thanks [@be5invis])
- [`dynamic-import-chunkname`]/TypeScript: supports `@typescript-eslint/parser` ([#1833], thanks [@noelebrun])
- [`order`]/TypeScript: ignore ordering of object imports ([#1831], thanks [@manuth])
- [`namespace`]: do not report on shadowed import names ([#518], thanks [@ljharb])
- [`export`]: avoid warning on `export * as` non-conflicts ([#1834], thanks [@ljharb])

### Changed
- [`no-extraneous-dependencies`]: add tests for importing types ([#1824], thanks [@taye])
- [docs] [`no-default-export`]: Fix docs url ([#1836], thanks [@beatrizrezener])
- [docs] [`imports-first`]: deprecation info and link to `first` docs ([#1835], thanks [@beatrizrezener])

## [2.21.2] - 2020-06-09
### Fixed
- [`order`]: avoid a crash on TypeScript’s `export import` syntax ([#1808], thanks [@ljharb])
@@ -702,6 +722,17 @@ for info on changes for earlier releases.

[`memo-parser`]: ./memo-parser/README.md

[#1836]: https://github.com/benmosher/eslint-plugin-import/pull/1836
[#1835]: https://github.com/benmosher/eslint-plugin-import/pull/1835
[#1834]: https://github.com/benmosher/eslint-plugin-import/issues/1834
[#1833]: https://github.com/benmosher/eslint-plugin-import/pull/1833
[#1831]: https://github.com/benmosher/eslint-plugin-import/pull/1831
[#1830]: https://github.com/benmosher/eslint-plugin-import/pull/1830
[#1824]: https://github.com/benmosher/eslint-plugin-import/pull/1824
[#1823]: https://github.com/benmosher/eslint-plugin-import/pull/1823
[#1822]: https://github.com/benmosher/eslint-plugin-import/pull/1822
[#1820]: https://github.com/benmosher/eslint-plugin-import/pull/1820
[#1819]: https://github.com/benmosher/eslint-plugin-import/pull/1819
[#1802]: https://github.com/benmosher/eslint-plugin-import/pull/1802
[#1801]: https://github.com/benmosher/eslint-plugin-import/issues/1801
[#1788]: https://github.com/benmosher/eslint-plugin-import/pull/1788
@@ -861,6 +892,7 @@ for info on changes for earlier releases.
[#555]: https://github.com/benmosher/eslint-plugin-import/pull/555
[#538]: https://github.com/benmosher/eslint-plugin-import/pull/538
[#527]: https://github.com/benmosher/eslint-plugin-import/pull/527
[#518]: https://github.com/benmosher/eslint-plugin-import/pull/518
[#509]: https://github.com/benmosher/eslint-plugin-import/pull/509
[#508]: https://github.com/benmosher/eslint-plugin-import/pull/508
[#503]: https://github.com/benmosher/eslint-plugin-import/pull/503
@@ -992,7 +1024,8 @@ for info on changes for earlier releases.
[#119]: https://github.com/benmosher/eslint-plugin-import/issues/119
[#89]: https://github.com/benmosher/eslint-plugin-import/issues/89

[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.2...HEAD
[Unreleased]: https://github.com/benmosher/eslint-plugin-import/compare/v2.22.0...HEAD
[2.22.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.22.0
[2.21.2]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.1...v2.21.2
[2.21.1]: https://github.com/benmosher/eslint-plugin-import/compare/v2.21.0...v2.21.1
[2.21.0]: https://github.com/benmosher/eslint-plugin-import/compare/v2.20.2...v2.21.0
@@ -1216,3 +1249,10 @@ for info on changes for earlier releases.
[@adjerbetian]: https://github.com/adjerbetian
[@Maxim-Mazurok]: https://github.com/Maxim-Mazurok
[@malykhinvi]: https://github.com/malykhinvi
[@nicolashenry]: https://github.com/nicolashenry
[@fernandopasik]: https://github.com/fernandopasik
[@taye]: https://github.com/taye
[@AndrewLeedham]: https://github.com/AndrewLeedham
[@be5invis]: https://github.com/be5invis
[@noelebrun]: https://github.com/noelebrun
[@beatrizrezener]: https://github.com/beatrizrezener
3 changes: 3 additions & 0 deletions docs/rules/imports-first.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# imports-first

This rule was **deprecated** in eslint-plugin-import v2.0.0. Please use the corresponding rule [`first`](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/first.md).
2 changes: 1 addition & 1 deletion docs/rules/no-cycle.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

Ensures that there is no resolvable path back to this module via its dependencies.

This includes cycles of depth 1 (imported module imports me) to `Infinity`, if the
This includes cycles of depth 1 (imported module imports me) to `"∞"` (or `Infinity`), if the
[`maxDepth`](#maxdepth) option is not set.

```js
9 changes: 7 additions & 2 deletions docs/rules/order.md
Original file line number Diff line number Diff line change
@@ -22,6 +22,8 @@ import bar from './bar';
import baz from './bar/baz';
// 6. "index" of the current directory
import main from './';
// 7. "object"-imports (only available in TypeScript)
import log = console.log;
```

Unassigned imports are ignored, as the order they are imported in may be important.
@@ -77,12 +79,15 @@ This rule supports the following options:

### `groups: [array]`:

How groups are defined, and the order to respect. `groups` must be an array of `string` or [`string`]. The only allowed `string`s are: `"builtin"`, `"external"`, `"internal"`, `"unknown"`, `"parent"`, `"sibling"`, `"index"`. The enforced order is the same as the order of each element in a group. Omitted types are implicitly grouped together as the last element. Example:
How groups are defined, and the order to respect. `groups` must be an array of `string` or [`string`]. The only allowed `string`s are:
`"builtin"`, `"external"`, `"internal"`, `"unknown"`, `"parent"`, `"sibling"`, `"index"`, `"object"`.
The enforced order is the same as the order of each element in a group. Omitted types are implicitly grouped together as the last element. Example:
```js
[
'builtin', // Built-in types are first
['sibling', 'parent'], // Then sibling and parent types. They can be mingled together
'index', // Then the index file
'object',
// Then the rest: internal and external type
]
```
@@ -91,7 +96,7 @@ The default value is `["builtin", "external", "parent", "sibling", "index"]`.
You can set the options like this:

```js
"import/order": ["error", {"groups": ["index", "sibling", "parent", "internal", "external", "builtin"]}]
"import/order": ["error", {"groups": ["index", "sibling", "parent", "internal", "external", "builtin", "object"]}]
```

### `pathGroups: [array of objects]`:
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-import",
"version": "2.21.2",
"version": "2.22.0",
"description": "Import with sanity.",
"engines": {
"node": ">=4"
@@ -55,7 +55,7 @@
"devDependencies": {
"@eslint/import-test-order-redirect-scoped": "file:./tests/files/order-redirect-scoped",
"@test-scope/some-module": "file:./tests/files/symlinked-module",
"@typescript-eslint/parser": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0 || ^3.3.0",
"array.prototype.flatmap": "^1.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
8 changes: 8 additions & 0 deletions resolvers/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,9 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).

## Unreleased

## v0.3.4 - 2020-06-16
### Added
- add `.node` extension ([#1663])

## v0.3.3 - 2020-01-10
### Changed
- [meta] copy LICENSE file to all npm packages on prepublish ([#1595], thanks [@opichals])

## v0.3.2 - 2018-01-05
### Added
- `.mjs` extension detected by default to support `experimental-modules` ([#939])
@@ -45,6 +51,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
[#438]: https://github.com/benmosher/eslint-plugin-import/pull/438

[#1663]: https://github.com/benmosher/eslint-plugin-import/issues/1663
[#1595]: https://github.com/benmosher/eslint-plugin-import/pull/1595
[#939]: https://github.com/benmosher/eslint-plugin-import/issues/939
[#531]: https://github.com/benmosher/eslint-plugin-import/issues/531
[#437]: https://github.com/benmosher/eslint-plugin-import/issues/437
@@ -53,3 +60,4 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
[@lukeapage]: https://github.com/lukeapage
[@SkeLLLa]: https://github.com/SkeLLLa
[@ljharb]: https://github.com/ljharb
[@opichals]: https://github.com/opichals
2 changes: 1 addition & 1 deletion resolvers/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-import-resolver-node",
"version": "0.3.3",
"version": "0.3.4",
"description": "Node default behavior import resolution plugin for eslint-plugin-import.",
"main": "index.js",
"files": [
2 changes: 1 addition & 1 deletion resolvers/node/test/native.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
exports.natively = function () { return "but where do we feature?" }
exports.natively = function () { return "but where do we feature?" }
9 changes: 9 additions & 0 deletions resolvers/webpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,9 +5,16 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel

## Unreleased

## 0.12.2 - 2020-06-16

### Fixed
- [fix] provide config fallback ([#1705], thanks [@migueloller])

## 0.12.1 - 2020-01-10

### Changed
- [meta] copy LICENSE file to all npm packages on prepublish ([#1595], thanks [@opichals])

## 0.12.0 - 2019-12-07

### Added
@@ -126,6 +133,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).

[#1705]: https://github.com/benmosher/eslint-plugin-import/pull/1705
[#1595]: https://github.com/benmosher/eslint-plugin-import/pull/1595
[#1503]: https://github.com/benmosher/eslint-plugin-import/pull/1503
[#1297]: https://github.com/benmosher/eslint-plugin-import/pull/1297
[#1261]: https://github.com/benmosher/eslint-plugin-import/pull/1261
@@ -179,3 +187,4 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
[@echenley]: https://github.com/echenley
[@Aghassi]: https://github.com/Aghassi
[@migueloller]: https://github.com/migueloller
[@opichals]: https://github.com/opichals
2 changes: 1 addition & 1 deletion resolvers/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-import-resolver-webpack",
"version": "0.12.1",
"version": "0.12.2",
"description": "Resolve paths to dependencies, given a webpack.config.js. Plugin for eslint-plugin-import.",
"main": "index.js",
"scripts": {
4 changes: 3 additions & 1 deletion src/ExportMap.js
Original file line number Diff line number Diff line change
@@ -562,7 +562,9 @@ ExportMap.parse = function (path, content, context) {

// This doesn't declare anything, but changes what's being exported.
if (includes(exports, n.type)) {
const exportedName = n.expression && n.expression.name || n.id.name
const exportedName = n.type === 'TSNamespaceExportDeclaration'
? n.id.name
: n.expression && n.expression.name || n.expression.id.name
const declTypes = [
'VariableDeclaration',
'ClassDeclaration',
117 changes: 62 additions & 55 deletions src/rules/dynamic-import-chunkname.js
Original file line number Diff line number Diff line change
@@ -34,78 +34,85 @@ module.exports = {
const chunkSubstrFormat = ` webpackChunkName: "${webpackChunknameFormat}",? `
const chunkSubstrRegex = new RegExp(chunkSubstrFormat)

return {
CallExpression(node) {
if (node.callee.type !== 'Import' && importFunctions.indexOf(node.callee.name) < 0) {
return
}
function run(node, arg) {
const sourceCode = context.getSourceCode()
const leadingComments = sourceCode.getCommentsBefore
? sourceCode.getCommentsBefore(arg) // This method is available in ESLint >= 4.
: sourceCode.getComments(arg).leading // This method is deprecated in ESLint 7.

const sourceCode = context.getSourceCode()
const arg = node.arguments[0]
const leadingComments = sourceCode.getCommentsBefore
? sourceCode.getCommentsBefore(arg) // This method is available in ESLint >= 4.
: sourceCode.getComments(arg).leading // This method is deprecated in ESLint 7.
if (!leadingComments || leadingComments.length === 0) {
context.report({
node,
message: 'dynamic imports require a leading comment with the webpack chunkname',
})
return
}

if (!leadingComments || leadingComments.length === 0) {
let isChunknamePresent = false

for (const comment of leadingComments) {
if (comment.type !== 'Block') {
context.report({
node,
message: 'dynamic imports require a leading comment with the webpack chunkname',
message: 'dynamic imports require a /* foo */ style comment, not a // foo comment',
})
return
}

let isChunknamePresent = false

for (const comment of leadingComments) {
if (comment.type !== 'Block') {
context.report({
node,
message: 'dynamic imports require a /* foo */ style comment, not a // foo comment',
})
return
}

if (!paddedCommentRegex.test(comment.value)) {
context.report({
node,
message: `dynamic imports require a block comment padded with spaces - /* foo */`,
})
return
}

try {
// just like webpack itself does
vm.runInNewContext(`(function(){return {${comment.value}}})()`)
}
catch (error) {
context.report({
node,
message: `dynamic imports require a "webpack" comment with valid syntax`,
})
return
}

if (!commentStyleRegex.test(comment.value)) {
context.report({
node,
message:
`dynamic imports require a leading comment in the form /*${chunkSubstrFormat}*/`,
})
return
}
if (!paddedCommentRegex.test(comment.value)) {
context.report({
node,
message: `dynamic imports require a block comment padded with spaces - /* foo */`,
})
return
}

if (chunkSubstrRegex.test(comment.value)) {
isChunknamePresent = true
}
try {
// just like webpack itself does
vm.runInNewContext(`(function(){return {${comment.value}}})()`)
}
catch (error) {
context.report({
node,
message: `dynamic imports require a "webpack" comment with valid syntax`,
})
return
}

if (!isChunknamePresent) {
if (!commentStyleRegex.test(comment.value)) {
context.report({
node,
message:
`dynamic imports require a leading comment in the form /*${chunkSubstrFormat}*/`,
})
return
}

if (chunkSubstrRegex.test(comment.value)) {
isChunknamePresent = true
}
}

if (!isChunknamePresent) {
context.report({
node,
message:
`dynamic imports require a leading comment in the form /*${chunkSubstrFormat}*/`,
})
}
}

return {
ImportExpression(node) {
run(node, node.source)
},

CallExpression(node) {
if (node.callee.type !== 'Import' && importFunctions.indexOf(node.callee.name) < 0) {
return
}

run(node, node.arguments[0])
},
}
},
Loading