Skip to content

Commit

Permalink
feat: add module-federation plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ErKeLost committed Mar 4, 2025
1 parent a645756 commit c6e8f72
Show file tree
Hide file tree
Showing 32 changed files with 640 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions examples/arco-pro/farm.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export default defineConfig((env) => {
},
plugins: [
'@farmfe/plugin-react',
'@farmfe/plugin-module-federation',
// '@farmfe/plugin-svgr',
svgr(),
farmJsPluginLess(),
Expand Down
1 change: 1 addition & 0 deletions examples/arco-pro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"@farmfe/js-plugin-less": "workspace:*",
"@farmfe/js-plugin-svgr": "workspace:^",
"@farmfe/plugin-react": "workspace:*",
"@farmfe/plugin-module-federation": "workspace:*",
"@farmfe/plugin-svgr": "^0.0.1",
"core-js": "^3.30.1",
"react-refresh": "^0.14.0",
Expand Down
9 changes: 9 additions & 0 deletions pnpm-lock.yaml

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

197 changes: 197 additions & 0 deletions rust-plugins/module-federation/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,197 @@
# Created by https://www.toptal.com/developers/gitignore/api/node
# Edit at https://www.toptal.com/developers/gitignore?templates=node

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# End of https://www.toptal.com/developers/gitignore/api/node

# Created by https://www.toptal.com/developers/gitignore/api/macos
# Edit at https://www.toptal.com/developers/gitignore?templates=macos

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

### macOS Patch ###
# iCloud generated files
*.icloud

# End of https://www.toptal.com/developers/gitignore/api/macos

# Created by https://www.toptal.com/developers/gitignore/api/windows
# Edit at https://www.toptal.com/developers/gitignore?templates=windows

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/windows

#Added by cargo

/target
# Cargo.lock

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

*.farm
12 changes: 12 additions & 0 deletions rust-plugins/module-federation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
edition = "2021"
name = "farmfe_module_federation"
version = "0.0.0"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
farmfe_core = { version = "*", path = "../../crates/core" }
farmfe_macro_plugin = { version = "*", path = "../../crates/macro_plugin" }
farmfe_toolkit = { version = "*", path = "../../crates/toolkit" }
Binary file not shown.
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/darwin-arm64/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-darwin-arm64`

This is the **aarch64-apple-darwin** binary for `@farmfe/module-federation`
18 changes: 18 additions & 0 deletions rust-plugins/module-federation/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "@farmfe/module-federation-darwin-arm64",
"version": "0.1.2",
"os": [
"darwin"
],
"cpu": [
"arm64"
],
"main": "index.farm",
"files": [
"index.farm"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/darwin-x64/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-darwin-x64`

This is the **x86_64-apple-darwin** binary for `@farmfe/module-federation`
18 changes: 18 additions & 0 deletions rust-plugins/module-federation/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "@farmfe/module-federation-darwin-x64",
"version": "0.0.0",
"os": [
"darwin"
],
"cpu": [
"x64"
],
"main": "index.farm",
"files": [
"index.farm"
],
"license": "MIT",
"engines": {
"node": ">= 10"
}
}
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/linux-arm64-gnu/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-linux-arm64-gnu`

This is the **aarch64-unknown-linux-gnu** binary for `@farmfe/module-federation`
21 changes: 21 additions & 0 deletions rust-plugins/module-federation/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "@farmfe/module-federation-linux-arm64-gnu",
"version": "0.0.0",
"os": [
"linux"
],
"cpu": [
"arm64"
],
"main": "index.farm",
"files": [
"index.farm"
],
"license": "MIT",
"engines": {
"node": ">= 10"
},
"libc": [
"glibc"
]
}
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/linux-arm64-musl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-linux-arm64-musl`

This is the **aarch64-unknown-linux-musl** binary for `@farmfe/module-federation`
21 changes: 21 additions & 0 deletions rust-plugins/module-federation/npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "@farmfe/module-federation-linux-arm64-musl",
"version": "0.0.0",
"os": [
"linux"
],
"cpu": [
"arm64"
],
"main": "index.farm",
"files": [
"index.farm"
],
"license": "MIT",
"engines": {
"node": ">= 10"
},
"libc": [
"glibc"
]
}
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/linux-x64-gnu/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-linux-x64-gnu`

This is the **x86_64-unknown-linux-gnu** binary for `@farmfe/module-federation`
21 changes: 21 additions & 0 deletions rust-plugins/module-federation/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "@farmfe/module-federation-linux-x64-gnu",
"version": "0.0.0",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "index.farm",
"files": [
"index.farm"
],
"license": "MIT",
"engines": {
"node": ">= 10"
},
"libc": [
"glibc"
]
}
3 changes: 3 additions & 0 deletions rust-plugins/module-federation/npm/linux-x64-musl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# `@farmfe/module-federation-linux-x64-musl`

This is the **x86_64-unknown-linux-musl** binary for `@farmfe/module-federation`
Loading

0 comments on commit c6e8f72

Please sign in to comment.