chore(rspack): final fixes
This commit is contained in:
parent
9cbc1af014
commit
a38eca2930
@ -5,12 +5,16 @@
|
|||||||
"projectType": "library",
|
"projectType": "library",
|
||||||
"targets": {
|
"targets": {
|
||||||
"build": {
|
"build": {
|
||||||
|
"outputs": ["{workspaceRoot}/build/packages/{projectName}/README.md"],
|
||||||
|
"command": "node ./scripts/copy-readme.js remix-legacy"
|
||||||
|
},
|
||||||
|
"build-base": {
|
||||||
"executor": "@nrwl/js:tsc",
|
"executor": "@nrwl/js:tsc",
|
||||||
"dependsOn": ["^build"],
|
"dependsOn": ["^build"],
|
||||||
"options": {
|
"options": {
|
||||||
"main": "packages-legacy/rspack/index.ts",
|
"main": "packages-legacy/rspack/index.ts",
|
||||||
"tsConfig": "packages-legacy/rspack/tsconfig.json",
|
"tsConfig": "packages-legacy/rspack/tsconfig.json",
|
||||||
"outputPath": "dist/packages/rspack-legacy",
|
"outputPath": "build/packages/rspack-legacy",
|
||||||
"updateBuildableProjectDepsInPackageJson": false,
|
"updateBuildableProjectDepsInPackageJson": false,
|
||||||
"assets": [
|
"assets": [
|
||||||
"packages-legacy/rspack/*.md",
|
"packages-legacy/rspack/*.md",
|
||||||
@ -28,9 +32,6 @@
|
|||||||
"LICENSE"
|
"LICENSE"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"publish": {
|
|
||||||
"command": "node tools/scripts/publish.mjs rspack-legacy {args.ver} {args.tag}"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
|||||||
@ -143,6 +143,8 @@
|
|||||||
"@nrwl/rollup",
|
"@nrwl/rollup",
|
||||||
"@nx/remix",
|
"@nx/remix",
|
||||||
"@nrwl/remix",
|
"@nrwl/remix",
|
||||||
|
"@nx/rspack",
|
||||||
|
"@nrwl/rspack",
|
||||||
"@nx/storybook",
|
"@nx/storybook",
|
||||||
"@nrwl/storybook",
|
"@nrwl/storybook",
|
||||||
"@nrwl/tao",
|
"@nrwl/tao",
|
||||||
|
|||||||
@ -85,6 +85,10 @@ export const CORE_PLUGINS: CorePlugin[] = [
|
|||||||
name: '@nx/rollup',
|
name: '@nx/rollup',
|
||||||
capabilities: 'executors,generators',
|
capabilities: 'executors,generators',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: '@nx/rspack',
|
||||||
|
capabilities: 'executors,generators',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: '@nx/storybook',
|
name: '@nx/storybook',
|
||||||
capabilities: 'executors,generators',
|
capabilities: 'executors,generators',
|
||||||
|
|||||||
@ -4,13 +4,17 @@
|
|||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/nrwl/nx-labs.git",
|
"url": "https://github.com/nrwl/nx.git",
|
||||||
"directory": "packages/rspack"
|
"directory": "packages/rspack"
|
||||||
},
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/nrwl/nx/issues"
|
||||||
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Monorepo",
|
"Monorepo",
|
||||||
"Next",
|
"Rspack",
|
||||||
"Vercel"
|
"Bundling",
|
||||||
|
"Module Federation"
|
||||||
],
|
],
|
||||||
"author": "Jack Hsu",
|
"author": "Jack Hsu",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@ -126,6 +126,8 @@
|
|||||||
"@nx/remix/*": ["packages/remix/*"],
|
"@nx/remix/*": ["packages/remix/*"],
|
||||||
"@nx/rollup": ["packages/rollup"],
|
"@nx/rollup": ["packages/rollup"],
|
||||||
"@nx/rollup/*": ["packages/rollup/*"],
|
"@nx/rollup/*": ["packages/rollup/*"],
|
||||||
|
"@nx/rspack": ["packages/rspack/src"],
|
||||||
|
"@nx/rspack/*": ["packages/rspack/src/*"],
|
||||||
"@nx/storybook": ["packages/storybook"],
|
"@nx/storybook": ["packages/storybook"],
|
||||||
"@nx/storybook/*": ["packages/storybook/*"],
|
"@nx/storybook/*": ["packages/storybook/*"],
|
||||||
"@nx/typedoc-theme": ["typedoc-theme/src/index.ts"],
|
"@nx/typedoc-theme": ["typedoc-theme/src/index.ts"],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user