Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nx/workspace

Package Overview
Dependencies
Maintainers
4
Versions
810
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx/workspace - npm Package Compare versions

Comparing version 20.3.0-canary.20241218-fb40366 to 20.3.0-canary.20241219-2eb5243

6

package.json
{
"name": "@nx/workspace",
"version": "20.3.0-canary.20241218-fb40366",
"version": "20.3.0-canary.20241219-2eb5243",
"private": false,

@@ -41,3 +41,3 @@ "description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",

"dependencies": {
"@nx/devkit": "20.3.0-canary.20241218-fb40366",
"@nx/devkit": "20.3.0-canary.20241219-2eb5243",
"chalk": "^4.1.0",

@@ -47,3 +47,3 @@ "enquirer": "~2.3.6",

"yargs-parser": "21.1.1",
"nx": "20.3.0-canary.20241218-fb40366"
"nx": "20.3.0-canary.20241219-2eb5243"
},

@@ -50,0 +50,0 @@ "publishConfig": {

@@ -22,2 +22,3 @@ "use strict";

'eslint.config.js',
'eslint.config.cjs',
/^jest\.config\.((app|lib)\.)?[jt]s$/,

@@ -24,0 +25,0 @@ 'vite.config.ts',

@@ -14,4 +14,6 @@ "use strict";

!tree.exists('eslint.config.js') &&
!tree.exists('eslint.config.cjs') &&
!tree.exists('.eslintrc.base.json') &&
!tree.exists('eslint.base.config.js')) {
!tree.exists('eslint.base.config.js') &&
!tree.exists('eslint.base.config.cjs')) {
return;

@@ -18,0 +20,0 @@ }

@@ -44,3 +44,5 @@ "use strict";

}
if (file === '.eslintrc.json' || file === 'eslint.config.js') {
if (file === '.eslintrc.json' ||
file === 'eslint.config.js' ||
file === 'eslint.config.cjs') {
continue;

@@ -77,3 +79,5 @@ }

}
if (file === '.eslintrc.json' || file === 'eslint.config.js') {
if (file === '.eslintrc.json' ||
file === 'eslint.config.cjs' ||
file === 'eslint.config.js') {
continue;

@@ -80,0 +84,0 @@ }

@@ -342,3 +342,3 @@ "use strict";

tree.write((0, path_1.join)(options.directory, 'pnpm-workspace.yaml'), `packages:
- ${workspaces.join('\n - ')}
${workspaces.map((workspace) => `- "${workspace}"`).join('\n ')}
`);

@@ -345,0 +345,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc