Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: remove modernjs-provider
  • Loading branch information
2heal1 committed Feb 6, 2026
commit fc350dba6f7c22900a1a50b29be40e0392211126
2 changes: 0 additions & 2 deletions apps/manifest-demo/webpack-host/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, { Suspense, lazy } from 'react';
// @ts-ignore
import ReactComponent from 'modern-js-provider/react-component';
import TestRemoteHook from './test-remote-hook';
import { loadRemote } from '@module-federation/runtime';
import LocalBtn from './components/ButtonOldAnt';
Expand Down Expand Up @@ -34,7 +33,6 @@ const WebpackPngRemote = lazy(() => import('remote1/WebpackPng'));

const App = () => (
<div>
<ReactComponent />
<h2>Manifest Basic Usage</h2>
<h3>check static remote</h3>
<table border={1} cellPadding={5}>
Expand Down
1 change: 0 additions & 1 deletion apps/manifest-demo/webpack-host/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ module.exports = composePlugins(withNx(), withReact(), (config, context) => {
'rspack_manifest_provider@http://localhost:3011/mf-manifest.json',
'js-entry-provider':
'rspack_js_entry_provider@http://localhost:3012/remoteEntry.js',
'modern-js-provider': 'app1@http://127.0.0.1:4001/mf-manifest.json',
},
filename: 'remoteEntry.js',
shared: {
Expand Down
7 changes: 1 addition & 6 deletions tools/scripts/run-manifest-e2e.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
#!/usr/bin/env node
import { spawn } from 'node:child_process';

const MANIFEST_WAIT_TARGETS = [
'tcp:3009',
'tcp:3012',
'http://127.0.0.1:4001/',
];
const MANIFEST_WAIT_TARGETS = ['tcp:3009', 'tcp:3012'];

const KILL_PORT_ARGS = [
'npx',
Expand All @@ -15,7 +11,6 @@ const KILL_PORT_ARGS = [
'3010',
'3011',
'3012',
'4001',
];

const SCENARIOS = {
Expand Down