nx 23.2.0-beta.6 → 23.2.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/command-line/init/init-v2.js +2 -0
- package/dist/src/core/graph/main.js +1 -1
- package/dist/src/devkit-internals.d.ts +1 -0
- package/dist/src/devkit-internals.js +6 -3
- package/dist/src/native/nx.wasm32-wasi.debug.wasm +0 -0
- package/dist/src/native/nx.wasm32-wasi.wasm +0 -0
- package/dist/src/utils/plugins/core-plugins.js +4 -0
- package/package.json +12 -11
|
@@ -401,6 +401,7 @@ async function runInit(options, baseMeta) {
|
|
|
401
401
|
function getPluginReason(plugin) {
|
|
402
402
|
const reasonMap = {
|
|
403
403
|
'@nx/eslint': 'eslint detected in dependencies',
|
|
404
|
+
'@nx/oxlint': 'oxlint detected in dependencies',
|
|
404
405
|
'@nx/storybook': 'storybook detected in dependencies',
|
|
405
406
|
'@nx/vite': 'vite detected in dependencies',
|
|
406
407
|
'@nx/vitest': 'vitest detected in dependencies',
|
|
@@ -448,6 +449,7 @@ function parsePluginsFlag(value) {
|
|
|
448
449
|
const npmPackageToPluginMap = {
|
|
449
450
|
// Generic JS tools
|
|
450
451
|
eslint: '@nx/eslint',
|
|
452
|
+
oxlint: '@nx/oxlint',
|
|
451
453
|
storybook: '@nx/storybook',
|
|
452
454
|
// Bundlers
|
|
453
455
|
vite: '@nx/vite',
|