Skip to content

Commit adf33c3

Browse files
committed
[compiler][be] Playground now uses tsup bundled plugin
Followup to #32758. This moves playground to use the tsup bundled plugin instead of webpack-built `babel-plugin-react-compiler`
1 parent 866872f commit adf33c3

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

compiler/apps/playground/components/Editor/EditorImpl.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ import BabelPluginReactCompiler, {
1919
PluginOptions,
2020
CompilerPipelineValue,
2121
parsePluginOptions,
22-
} from 'babel-plugin-react-compiler/src';
22+
printReactiveFunctionWithOutlined,
23+
printFunctionWithOutlined,
24+
} from 'babel-plugin-react-compiler';
2325
import clsx from 'clsx';
2426
import invariant from 'invariant';
2527
import {useSnackbar} from 'notistack';
@@ -41,8 +43,6 @@ import {
4143
default as Output,
4244
PrintedCompilerPipelineValue,
4345
} from './Output';
44-
import {printFunctionWithOutlined} from 'babel-plugin-react-compiler/src/HIR/PrintHIR';
45-
import {printReactiveFunctionWithOutlined} from 'babel-plugin-react-compiler/src/ReactiveScopes/PrintReactiveFunction';
4646
import {transformFromAstSync} from '@babel/core';
4747

4848
function parseInput(

compiler/apps/playground/components/Editor/Input.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';
9-
import {CompilerErrorDetail} from 'babel-plugin-react-compiler/src';
9+
import {CompilerErrorDetail} from 'babel-plugin-react-compiler';
1010
import invariant from 'invariant';
1111
import type {editor} from 'monaco-editor';
1212
import * as monaco from 'monaco-editor';

compiler/apps/playground/components/Editor/Output.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
InformationCircleIcon,
1212
} from '@heroicons/react/outline';
1313
import MonacoEditor, {DiffEditor} from '@monaco-editor/react';
14-
import {type CompilerError} from 'babel-plugin-react-compiler/src';
14+
import {type CompilerError} from 'babel-plugin-react-compiler';
1515
import parserBabel from 'prettier/plugins/babel';
1616
import * as prettierPluginEstree from 'prettier/plugins/estree';
1717
import * as prettier from 'prettier/standalone';

compiler/apps/playground/lib/reactCompilerMonacoDiagnostics.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
*/
77

88
import {Monaco} from '@monaco-editor/react';
9-
import {
10-
CompilerErrorDetail,
11-
ErrorSeverity,
12-
} from 'babel-plugin-react-compiler/src';
9+
import {CompilerErrorDetail, ErrorSeverity} from 'babel-plugin-react-compiler';
1310
import {MarkerSeverity, type editor} from 'monaco-editor';
1411

1512
function mapReactCompilerSeverityToMonaco(
@@ -54,7 +51,7 @@ export function renderReactCompilerMarkers({
5451
model,
5552
details,
5653
}: ReactCompilerMarkerConfig): void {
57-
let markers = [];
54+
const markers: Array<editor.IMarkerData> = [];
5855
for (const detail of details) {
5956
const marker = mapReactCompilerDiagnosticToMonacoMarker(detail, monaco);
6057
if (marker == null) {

compiler/apps/playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"scripts": {
66
"dev": "cd ../.. && concurrently --kill-others -n compiler,runtime,playground \"yarn workspace babel-plugin-react-compiler run watch\" \"yarn workspace react-compiler-runtime run watch\" \"wait-on packages/babel-plugin-react-compiler/dist/index.js && cd apps/playground && NODE_ENV=development next dev\"",
7-
"build:compiler": "cd ../.. && concurrently -n compiler,runtime \"yarn workspace babel-plugin-react-compiler run build\" \"yarn workspace react-compiler-runtime run build\"",
7+
"build:compiler": "cd ../.. && concurrently -n compiler,runtime \"yarn workspace babel-plugin-react-compiler run build-with-types\" \"yarn workspace react-compiler-runtime run build\"",
88
"build": "yarn build:compiler && next build",
99
"postbuild": "node ./scripts/downloadFonts.js",
1010
"preinstall": "cd ../.. && yarn install --frozen-lockfile",

compiler/packages/babel-plugin-react-compiler/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@
1010
],
1111
"scripts": {
1212
"build": "rimraf dist && tsup",
13+
"build-with-types": "rimraf dist && tsup --dts",
1314
"test": "./scripts/link-react-compiler-runtime.sh && yarn snap:ci",
1415
"jest": "yarn build && ts-node node_modules/.bin/jest",
1516
"snap": "yarn workspace snap run snap",
1617
"snap:build": "yarn workspace snap run build",
1718
"snap:ci": "yarn snap:build && yarn snap",
1819
"ts:analyze-trace": "scripts/ts-analyze-trace.sh",
1920
"lint": "yarn eslint src",
20-
"watch": "yarn build --watch"
21+
"watch": "yarn build --dts --watch"
2122
},
2223
"dependencies": {
2324
"@babel/types": "^7.26.0"

0 commit comments

Comments
 (0)