Home

Awesome

@rsbuild/plugin-check-syntax

An Rsbuild plugin to check the syntax compatibility of output files.

This plugin tries to find incompatible syntax in the output files with the current browserslist value. If any incompatible syntax is found, it will print detailed information to the terminal and abort the build.

<p> <a href="https://npmjs.com/package/@rsbuild/plugin-check-syntax"> <img src="https://img.shields.io/npm/v/@rsbuild/plugin-check-syntax?style=flat-square&colorA=564341&colorB=EDED91" alt="npm version" /> </a> <img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="license" /> <a href="https://npmcharts.com/compare/@rsbuild/plugin-check-syntax?minimal=true"><img src="https://img.shields.io/npm/dm/@rsbuild/plugin-check-syntax.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="downloads" /></a> </p>

Usage

Install:

npm add @rsbuild/plugin-check-syntax -D

Add plugin to your rsbuild.config.ts:

// rsbuild.config.ts
import { pluginCheckSyntax } from "@rsbuild/plugin-check-syntax";

export default {
  plugins: [pluginCheckSyntax()],
};

Enable Detection

After registering the Check Syntax plugin, Rsbuild will perform syntax checking after production builds.

When Rsbuild detects incompatible advanced syntax in the build artifacts, it will print the error logs in the terminal and exit the current build process.

Error Logs

The format of the error logs is as follows, including the source file, artifact location, error reason, and source code:

error   [@rsbuild/plugin-check-syntax] Find some syntax that does not match "ecmaVersion <= 2015":

  Error 1
  source:  /node_modules/foo/index.js:1:0
  output:  /dist/static/js/main.3f7a4d7e.js:2:39400
  reason:  Unexpected token (1:178)
  code:
     9 |
    10 | var b = 2;
    11 |
  > 12 | console.log(() => {
    13 |   return a + b;
    14 | });
    15 |

Currently, syntax checking is implemented based on AST parser. Each time it performs a check, it can only identify the first incompatible syntax found in the file. If there are multiple incompatible syntaxes in the file, you need to fix the detected syntax and re-run the check.

If the corresponding source location is not shown in the log, try setting output.minify to false and rebuild again.

Note that displaying source code information depends on the source map file. You can configure the output.sourceMap option to generate source map files during production builds.

export default {
  output: {
    sourceMap: {
      js:
        process.env.NODE_ENV === "production"
          ? "source-map"
          : "cheap-module-source-map",
    },
  },
};

Solutions

If a syntax error is detected, you can handle it in the following ways:

Options

targets

targets is the target browser range, its value is a standard browserslist. Check Syntax plugin will by default read the current project's browserslist configuration, so you usually don't need to manually configure the targets option.

Rsbuild will read the value of targets and automatically deduce the minimum ECMAScript syntax version that can be used in the build artifacts, such as ES5 or ES2015.

For example, if the target browsers to be compatible with in the project are Chrome 53 and later versions, you can add the following configuration:

pluginCheckSyntax({
  targets: ["chrome >= 53"],
});

Rsbuild will deduce that the ECMAScript syntax version that can be used with chrome >= 53 is ES2015. When the build artifacts contain ES2016 or higher syntax, it triggers syntax error prompts.

If you want to learn more about how to use browserslist, please refer to "Browserslist".

ecmaVersion

ecmaVersion represents the minimum ECMAScript syntax version that can be used in the build artifact.

If ecmaVersion is not set, Check Syntax plugin will infer the ECMAScript version based on targets. Currently, the supported inference range is es5 ~ es2018.

For example, if the minimum ECMAScript syntax version that can be used in the build artifacts is ES2020, you can add the following configuration:

pluginCheckSyntax({
  ecmaVersion: 2020,
});

At this time, the build artifacts can include all syntax supported by ES2020, such as optional chaining.

exclude

exclude is used to exclude a portion of files during detection. You can pass in one or more regular expressions to match the paths of source files. Files that match the regular expression will be ignored and will not trigger syntax checking.

For example, to ignore files under the node_modules/foo directory:

pluginCheckSyntax({
  exclude: /node_modules\/foo/,
});

Limitations

  1. Check Syntax plugin only checks incompatible syntax in the outputs and cannot detect missing polyfills.
  2. Check Syntax plugin's detection may be inaccurate in certain cases due to the limitations of AST parser. Check Syntax is implemented based on Acorn, which targets a specific ECMA version, such as ES2018. On the other hand, SWC can target specific syntax during compilation, such as ES2018's Object Spread. This difference means that using the same browserslist configuration, SWC's compiled output is correct, but Check Syntax may still fail detection.

License

MIT.