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: rspack-contrib/rsbuild-plugin-check-syntax
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: rspack-contrib/rsbuild-plugin-check-syntax
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Jan 22, 2025

  1. chore: remove runtime dependency of @rsbuild/core (#20)

    nyqykk authored Jan 22, 2025
    Copy the full SHA
    d40a2c5 View commit details
  2. chore: release v1.2.1

    chenjiahan committed Jan 22, 2025
    Copy the full SHA
    e2e3da4 View commit details
Showing with 22 additions and 3 deletions.
  1. +3 −2 package.json
  2. +17 −0 pnpm-lock.yaml
  3. +2 −1 src/printErrors.ts
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rsbuild/plugin-check-syntax",
"version": "1.2.0",
"version": "1.2.1",
"repository": "https://github.com/rspack-contrib/rsbuild-plugin-check-syntax",
"license": "MIT",
"type": "module",
@@ -50,7 +50,8 @@
"simple-git-hooks": "^2.11.1",
"strip-ansi": "^7.1.0",
"typescript": "^5.7.2",
"upath": "^2.0.1"
"upath": "^2.0.1",
"rslog": "^1.2.3"
},
"peerDependencies": {
"@rsbuild/core": "1.x"
17 changes: 17 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/printErrors.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { logger } from '@rsbuild/core';
import color from 'picocolors';
import { logger } from 'rslog';

import type {
ECMASyntaxError,
EcmaVersion,