fix(rspack): should be inferred by default (#29736)
This PR updates the Rspack Plugin to be inferred by default. ### Currently When you generate a project using rspack it would not be inferred and would add the executor to `project.json`. ### After Generating a project using rspack will add it to inferred plugins inside `nx.json` and update the `rspack.config.js` to be a standard config and use Nx plugins.
This commit is contained in:
parent
7c5fcf3566
commit
4e04979a36
@ -8,7 +8,6 @@ import {
|
||||
listFiles,
|
||||
newProject,
|
||||
readFile,
|
||||
readJson,
|
||||
runCLI,
|
||||
runCLIAsync,
|
||||
runE2ETests,
|
||||
|
||||
121
e2e/rspack/tests/rspack.legacy.spec.ts
Normal file
121
e2e/rspack/tests/rspack.legacy.spec.ts
Normal file
@ -0,0 +1,121 @@
|
||||
import {
|
||||
cleanupProject,
|
||||
newProject,
|
||||
uniq,
|
||||
updateFile,
|
||||
runCLI,
|
||||
updateJson,
|
||||
} from '@nx/e2e/utils';
|
||||
|
||||
describe('rspack e2e legacy', () => {
|
||||
let originalEnv;
|
||||
|
||||
// Setting up individual workspaces per
|
||||
// test can cause e2e runs to take a long time.
|
||||
// For this reason, we recommend each suite only
|
||||
// consumes 1 workspace. The tests should each operate
|
||||
// on a unique project in the workspace, such that they
|
||||
// are not dependant on one another.
|
||||
beforeAll(() => {
|
||||
newProject({ packages: ['@nx/rspack', '@nx/react'] });
|
||||
originalEnv = process.env.NODE_ENV;
|
||||
});
|
||||
afterAll(() => {
|
||||
process.env.NODE_ENV = originalEnv;
|
||||
cleanupProject();
|
||||
});
|
||||
|
||||
it('should support a standard config object', () => {
|
||||
const appName = uniq('non-inferred-app');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/react:app --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`,
|
||||
{ env: { NX_ADD_PLUGINS: 'false' } }
|
||||
);
|
||||
|
||||
updateJson(`apps/${appName}/project.json`, (json) => {
|
||||
json.targets.build.options.standardRspackConfigFunction = true;
|
||||
return json;
|
||||
});
|
||||
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
const { NxAppRspackPlugin } = require('@nx/rspack/app-plugin');
|
||||
const { NxReactRspackPlugin } = require('@nx/rspack/react-plugin');
|
||||
const { join } = require('path');
|
||||
|
||||
module.exports = {
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${appName}'),
|
||||
},
|
||||
devServer: {
|
||||
port: 4200,
|
||||
historyApiFallback: {
|
||||
index: '/index.html',
|
||||
disableDotRule: true,
|
||||
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'],
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
new NxAppRspackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
main: './src/main.tsx',
|
||||
index: './src/index.html',
|
||||
baseHref: '/',
|
||||
assets: ['./src/favicon.ico', './src/assets'],
|
||||
styles: ['./src/styles.scss'],
|
||||
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
|
||||
optimization: process.env['NODE_ENV'] === 'production',
|
||||
}),
|
||||
new NxReactRspackPlugin({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
],
|
||||
};`
|
||||
);
|
||||
|
||||
const result = runCLI(`build ${appName}`);
|
||||
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
});
|
||||
|
||||
it('should support Nx config function that returns a config object', () => {
|
||||
const appName = uniq('non-inferred-app');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none --style=css --no-interactive`,
|
||||
{ env: { NX_ADD_PLUGINS: 'false' } }
|
||||
);
|
||||
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
const { composePlugins, withNx, withReact } = require('@nx/rspack');
|
||||
|
||||
// Nx plugins for rspack.
|
||||
module.exports = composePlugins(
|
||||
withNx(),
|
||||
withReact({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
(config) => {
|
||||
// Update the rspack config as needed here.
|
||||
return config;
|
||||
}
|
||||
);`
|
||||
);
|
||||
|
||||
const result = runCLI(`build ${appName}`);
|
||||
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
});
|
||||
});
|
||||
@ -1,18 +1,14 @@
|
||||
import { getPackageManagerCommand } from '@nx/devkit';
|
||||
import {
|
||||
checkFilesExist,
|
||||
cleanupProject,
|
||||
listFiles,
|
||||
newProject,
|
||||
tmpProjPath,
|
||||
uniq,
|
||||
updateFile,
|
||||
runCLI,
|
||||
runCommand,
|
||||
createFile,
|
||||
readJson,
|
||||
updateJson,
|
||||
} from '@nx/e2e/utils';
|
||||
import { execSync } from 'child_process';
|
||||
import { writeFileSync } from 'fs';
|
||||
import { join } from 'path';
|
||||
|
||||
describe('rspack e2e', () => {
|
||||
let proj: string;
|
||||
@ -24,126 +20,282 @@ describe('rspack e2e', () => {
|
||||
// on a unique project in the workspace, such that they
|
||||
// are not dependant on one another.
|
||||
beforeAll(() => {
|
||||
proj = newProject({ packages: ['@nx/rspack'] });
|
||||
proj = newProject({ packages: ['@nx/rspack', '@nx/react'] });
|
||||
});
|
||||
|
||||
afterAll(() => cleanupProject());
|
||||
|
||||
it('should create rspack root project and additional apps', async () => {
|
||||
const project = uniq('myapp');
|
||||
it('should be inferred (crystal) by default', async () => {
|
||||
const appName = uniq('app');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/rspack:preset ${project} --framework=react --unitTestRunner=jest --e2eTestRunner=cypress --verbose`
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`
|
||||
);
|
||||
|
||||
// Added this so that the nx-ecosystem-ci tests don't throw jest error
|
||||
writeFileSync(
|
||||
join(tmpProjPath(), '.babelrc'),
|
||||
const nxJSON = readJson('nx.json');
|
||||
const rspackPlugin = nxJSON.plugins.find(
|
||||
(plugin) => plugin.plugin === '@nx/rspack/plugin'
|
||||
);
|
||||
|
||||
expect(rspackPlugin).toBeDefined();
|
||||
});
|
||||
|
||||
describe('config types', () => {
|
||||
it('should support a standard config object', () => {
|
||||
const appName = uniq('app');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`
|
||||
);
|
||||
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
{
|
||||
"presets": [
|
||||
"@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript",
|
||||
[
|
||||
"@nx/react/babel",
|
||||
{
|
||||
"runtime": "automatic"
|
||||
}
|
||||
]
|
||||
const { NxAppRspackPlugin } = require('@nx/rspack/app-plugin');
|
||||
const { NxReactRspackPlugin } = require('@nx/rspack/react-plugin');
|
||||
const { join } = require('path');
|
||||
|
||||
module.exports = {
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${appName}'),
|
||||
},
|
||||
devServer: {
|
||||
port: 4200,
|
||||
historyApiFallback: {
|
||||
index: '/index.html',
|
||||
disableDotRule: true,
|
||||
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'],
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
new NxAppRspackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
main: './src/main.tsx',
|
||||
index: './src/index.html',
|
||||
baseHref: '/',
|
||||
assets: ['./src/favicon.ico', './src/assets'],
|
||||
styles: ['./src/styles.scss'],
|
||||
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
|
||||
optimization: process.env['NODE_ENV'] === 'production',
|
||||
}),
|
||||
new NxReactRspackPlugin({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
],
|
||||
"plugins": ["@babel/plugin-transform-runtime"]
|
||||
}
|
||||
`
|
||||
};`
|
||||
);
|
||||
|
||||
const pm = getPackageManagerCommand();
|
||||
runCommand(
|
||||
pm.addDev +
|
||||
' @babel/preset-react @babel/preset-env @babel/preset-typescript'
|
||||
const result = runCLI(`build ${appName}`);
|
||||
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
|
||||
let result = runCLI(`build ${project}`, {
|
||||
env: { NODE_ENV: 'production' },
|
||||
});
|
||||
expect(result).toContain('Successfully ran target build');
|
||||
// Make sure expected files are present.
|
||||
/**
|
||||
* The files that are generated are:
|
||||
* ["assets", "favicon.ico", "index.html", "main.bf7851e6.js", "runtime.e4294127.js"]
|
||||
*/
|
||||
expect(listFiles(`dist/${project}`)).toHaveLength(5);
|
||||
|
||||
result = runCLI(`test ${project}`);
|
||||
expect(result).toContain('Successfully ran target test');
|
||||
it('should support a standard function that returns a config object', () => {
|
||||
const appName = uniq('app');
|
||||
|
||||
// TODO(Colum): re-enable when cypress issue is resolved
|
||||
// result = runCLI(`e2e e2e`);
|
||||
// expect(result.stdout).toContain('Successfully ran target e2e');
|
||||
|
||||
// Update app and make sure previous dist files are not present.
|
||||
updateFile(`src/app/app.tsx`, (content) => {
|
||||
return `${content}\nconsole.log('hello');
|
||||
`;
|
||||
});
|
||||
result = runCLI(`build ${project}`, {
|
||||
env: { NODE_ENV: 'production' },
|
||||
});
|
||||
expect(result).toContain('Successfully ran target build');
|
||||
expect(listFiles(`dist/${project}`)).toHaveLength(5); // same length as before
|
||||
|
||||
// Generate a new app and check that the files are correct
|
||||
const app2 = uniq('app2');
|
||||
runCLI(
|
||||
`generate @nx/rspack:app ${app2} --framework=react --unitTestRunner=jest --e2eTestRunner=cypress --style=css`
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`
|
||||
);
|
||||
checkFilesExist(`${app2}/project.json`, `${app2}-e2e/project.json`);
|
||||
|
||||
// Added this so that the nx-ecosystem-ci tests don't throw jest error
|
||||
writeFileSync(
|
||||
join(tmpProjPath(), app2, '.babelrc'),
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
{
|
||||
"presets": [
|
||||
"@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript",
|
||||
[
|
||||
"@nx/react/babel",
|
||||
{
|
||||
"runtime": "automatic"
|
||||
}
|
||||
]
|
||||
const { NxAppRspackPlugin } = require('@nx/rspack/app-plugin');
|
||||
const { NxReactRspackPlugin } = require('@nx/rspack/react-plugin');
|
||||
const { join } = require('path');
|
||||
|
||||
module.exports = () => {
|
||||
return {
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${appName}'),
|
||||
},
|
||||
devServer: {
|
||||
port: 4200,
|
||||
historyApiFallback: {
|
||||
index: '/index.html',
|
||||
disableDotRule: true,
|
||||
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'],
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
new NxAppRspackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
main: './src/main.tsx',
|
||||
index: './src/index.html',
|
||||
baseHref: '/',
|
||||
assets: ['./src/favicon.ico', './src/assets'],
|
||||
styles: ['./src/styles.scss'],
|
||||
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
|
||||
optimization: process.env['NODE_ENV'] === 'production',
|
||||
}),
|
||||
new NxReactRspackPlugin({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
],
|
||||
"plugins": ["@babel/plugin-transform-runtime"]
|
||||
};
|
||||
};`
|
||||
);
|
||||
|
||||
const result = runCLI(`build ${appName}`);
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
});
|
||||
|
||||
it('should support an array of standard config objects', () => {
|
||||
const appName = uniq('app');
|
||||
const serverName = uniq('server');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`
|
||||
);
|
||||
|
||||
// Create server index file
|
||||
createFile(
|
||||
`apps/${serverName}/index.js`,
|
||||
`console.log('Hello from ${serverName}');\n`
|
||||
);
|
||||
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
const { NxAppRspackPlugin } = require('@nx/rspack/app-plugin');
|
||||
const { NxReactRspackPlugin } = require('@nx/rspack/react-plugin');
|
||||
const { join } = require('path');
|
||||
|
||||
module.exports = [
|
||||
{
|
||||
name: 'client',
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${appName}'),
|
||||
},
|
||||
devServer: {
|
||||
port: 4200,
|
||||
historyApiFallback: {
|
||||
index: '/index.html',
|
||||
disableDotRule: true,
|
||||
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'],
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
new NxAppRspackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
main: './src/main.tsx',
|
||||
index: './src/index.html',
|
||||
baseHref: '/',
|
||||
assets: ['./src/favicon.ico', './src/assets'],
|
||||
styles: ['./src/styles.scss'],
|
||||
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
|
||||
optimization: process.env['NODE_ENV'] === 'production',
|
||||
}),
|
||||
new NxReactRspackPlugin({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
],
|
||||
}, {
|
||||
name: 'server',
|
||||
target: 'node',
|
||||
entry: '../${serverName}/index.js',
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${serverName}'),
|
||||
filename: 'index.js',
|
||||
},
|
||||
}
|
||||
];
|
||||
`
|
||||
);
|
||||
|
||||
result = runCLI(`build ${app2}`, {
|
||||
env: { NODE_ENV: 'production' },
|
||||
});
|
||||
expect(result).toContain('Successfully ran target build');
|
||||
// Make sure expected files are present.
|
||||
expect(listFiles(`dist/${app2}`)).toHaveLength(5);
|
||||
const result = runCLI(`build ${appName}`);
|
||||
|
||||
result = runCLI(`test ${app2}`);
|
||||
expect(result).toContain('Successfully ran target test');
|
||||
checkFilesExist(`dist/${appName}/main.js`);
|
||||
checkFilesExist(`dist/${serverName}/index.js`);
|
||||
|
||||
// TODO(Colum): re-enable when cypress issue is resolved
|
||||
// result = runCLI(`e2e ${app2}-e2e`);
|
||||
// expect(result.stdout).toContain('Successfully ran target e2e');
|
||||
|
||||
// Generate a Nest app and verify build output
|
||||
const app3 = uniq('app3');
|
||||
runCLI(
|
||||
`generate @nx/rspack:app ${app3} --framework=nest --unitTestRunner=jest --no-interactive`
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
checkFilesExist(`${app3}/project.json`);
|
||||
|
||||
result = runCLI(`build ${app3}`);
|
||||
expect(result).toContain('Successfully ran target build');
|
||||
// Make sure expected files are present.
|
||||
expect(listFiles(`dist/${app3}`)).toHaveLength(2);
|
||||
|
||||
result = runCLI(`build ${app3} --generatePackageJson=true`);
|
||||
expect(result).toContain('Successfully ran target build');
|
||||
// Make sure expected files are present.
|
||||
expect(listFiles(`dist/${app3}`)).toHaveLength(4);
|
||||
}, 200_000);
|
||||
});
|
||||
|
||||
it('should support a function that returns an array of standard config objects', () => {
|
||||
const appName = uniq('app');
|
||||
const serverName = uniq('server');
|
||||
|
||||
runCLI(
|
||||
`generate @nx/react:application --directory=apps/${appName} --bundler=rspack --e2eTestRunner=none`
|
||||
);
|
||||
|
||||
// Create server index file
|
||||
createFile(
|
||||
`apps/${serverName}/index.js`,
|
||||
`console.log('Hello from ${serverName}');\n`
|
||||
);
|
||||
|
||||
updateFile(
|
||||
`apps/${appName}/rspack.config.js`,
|
||||
`
|
||||
const { NxAppRspackPlugin } = require('@nx/rspack/app-plugin');
|
||||
const { NxReactRspackPlugin } = require('@nx/rspack/react-plugin');
|
||||
const { join } = require('path');
|
||||
|
||||
module.exports = () => {
|
||||
return [
|
||||
{
|
||||
name: 'client',
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${appName}'),
|
||||
},
|
||||
devServer: {
|
||||
port: 4200,
|
||||
historyApiFallback: {
|
||||
index: '/index.html',
|
||||
disableDotRule: true,
|
||||
htmlAcceptHeaders: ['text/html', 'application/xhtml+xml'],
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
new NxAppRspackPlugin({
|
||||
tsConfig: './tsconfig.app.json',
|
||||
main: './src/main.tsx',
|
||||
index: './src/index.html',
|
||||
baseHref: '/',
|
||||
assets: ['./src/favicon.ico', './src/assets'],
|
||||
styles: ['./src/styles.scss'],
|
||||
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
|
||||
optimization: process.env['NODE_ENV'] === 'production',
|
||||
}),
|
||||
new NxReactRspackPlugin({
|
||||
// Uncomment this line if you don't want to use SVGR
|
||||
// See: https://react-svgr.com/
|
||||
// svgr: false
|
||||
}),
|
||||
],
|
||||
},
|
||||
{
|
||||
name: 'server',
|
||||
target: 'node',
|
||||
entry: '../${serverName}/index.js',
|
||||
output: {
|
||||
path: join(__dirname, '../../dist/${serverName}'),
|
||||
filename: 'index.js',
|
||||
}
|
||||
}
|
||||
];
|
||||
};`
|
||||
);
|
||||
const result = runCLI(`build ${appName}`);
|
||||
|
||||
checkFilesExist(`dist/${serverName}/index.js`);
|
||||
checkFilesExist(`dist/${appName}/main.js`);
|
||||
|
||||
expect(result).toContain(
|
||||
`Successfully ran target build for project ${appName}`
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@ -1632,7 +1632,7 @@ describe('app', () => {
|
||||
linter: Linter.EsLint,
|
||||
style: 'none',
|
||||
e2eTestRunner: 'none',
|
||||
addPlugin: true,
|
||||
addPlugin: false,
|
||||
skipFormat: true,
|
||||
});
|
||||
|
||||
|
||||
@ -32,7 +32,6 @@ import { initWebpack } from './lib/bundlers/add-webpack';
|
||||
import {
|
||||
handleStyledJsxForRspack,
|
||||
initRspack,
|
||||
setupRspackConfiguration,
|
||||
} from './lib/bundlers/add-rspack';
|
||||
import {
|
||||
initRsbuild,
|
||||
@ -125,8 +124,6 @@ export async function applicationGeneratorInternal(
|
||||
|
||||
if (options.bundler === 'vite') {
|
||||
await setupViteConfiguration(tree, options, tasks);
|
||||
} else if (options.bundler === 'rspack') {
|
||||
await setupRspackConfiguration(tree, options, tasks);
|
||||
} else if (options.bundler === 'rsbuild') {
|
||||
await setupRsbuildConfiguration(tree, options, tasks);
|
||||
}
|
||||
|
||||
@ -8,7 +8,6 @@ import {
|
||||
} from '@nx/devkit';
|
||||
import * as pc from 'picocolors';
|
||||
import { babelLoaderVersion, nxVersion } from '../../../../utils/versions';
|
||||
import { maybeJs } from '../../../../utils/maybe-js';
|
||||
import { NormalizedSchema, Schema } from '../../schema';
|
||||
|
||||
export async function initRspack(
|
||||
@ -19,38 +18,11 @@ export async function initRspack(
|
||||
const { rspackInitGenerator } = ensurePackage('@nx/rspack', nxVersion);
|
||||
const rspackInitTask = await rspackInitGenerator(tree, {
|
||||
...options,
|
||||
addPlugin: false,
|
||||
skipFormat: true,
|
||||
});
|
||||
tasks.push(rspackInitTask);
|
||||
}
|
||||
|
||||
export async function setupRspackConfiguration(
|
||||
tree: Tree,
|
||||
options: NormalizedSchema<Schema>,
|
||||
tasks: any[]
|
||||
) {
|
||||
const { configurationGenerator } = ensurePackage('@nx/rspack', nxVersion);
|
||||
const rspackTask = await configurationGenerator(tree, {
|
||||
project: options.projectName,
|
||||
main: joinPathFragments(
|
||||
options.appProjectRoot,
|
||||
maybeJs(
|
||||
{
|
||||
js: options.js,
|
||||
useJsx: true,
|
||||
},
|
||||
`src/main.tsx`
|
||||
)
|
||||
),
|
||||
tsConfig: joinPathFragments(options.appProjectRoot, 'tsconfig.app.json'),
|
||||
target: 'web',
|
||||
newProject: true,
|
||||
framework: 'react',
|
||||
});
|
||||
tasks.push(rspackTask);
|
||||
}
|
||||
|
||||
export function handleStyledJsxForRspack(
|
||||
tasks: any[],
|
||||
tree: Tree,
|
||||
|
||||
@ -12,9 +12,6 @@ export default async function (
|
||||
const tasks = [];
|
||||
const initTask = await rspackInitGenerator(tree, {
|
||||
..._options,
|
||||
// TODO: Crystalize the default rspack.config.js file.
|
||||
// The default setup isn't crystalized so don't add plugin.
|
||||
addPlugin: false,
|
||||
});
|
||||
tasks.push(initTask);
|
||||
|
||||
|
||||
@ -28,9 +28,6 @@ export async function configurationGenerator(
|
||||
) {
|
||||
const task = await rspackInitGenerator(tree, {
|
||||
...options,
|
||||
// TODO: Crystalize the default rspack.config.js file.
|
||||
// The default setup isn't crystalized so don't add plugin.
|
||||
addPlugin: false,
|
||||
});
|
||||
const { targets, root, projectType } = readProjectConfiguration(
|
||||
tree,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user