Socket
Socket
Sign inDemoInstall

nx

Package Overview
Dependencies
Maintainers
8
Versions
1357
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nx - npm Package Compare versions

Comparing version 19.5.5 to 19.5.6

24

package.json
{
"name": "nx",
"version": "19.5.5",
"version": "19.5.6",
"private": false,

@@ -74,3 +74,3 @@ "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",

"ora": "5.3.0",
"@nrwl/tao": "19.5.5"
"@nrwl/tao": "19.5.6"
},

@@ -90,12 +90,12 @@ "peerDependencies": {

"optionalDependencies": {
"@nx/nx-darwin-x64": "19.5.5",
"@nx/nx-darwin-arm64": "19.5.5",
"@nx/nx-linux-x64-gnu": "19.5.5",
"@nx/nx-linux-x64-musl": "19.5.5",
"@nx/nx-win32-x64-msvc": "19.5.5",
"@nx/nx-linux-arm64-gnu": "19.5.5",
"@nx/nx-linux-arm64-musl": "19.5.5",
"@nx/nx-linux-arm-gnueabihf": "19.5.5",
"@nx/nx-win32-arm64-msvc": "19.5.5",
"@nx/nx-freebsd-x64": "19.5.5"
"@nx/nx-darwin-x64": "19.5.6",
"@nx/nx-darwin-arm64": "19.5.6",
"@nx/nx-linux-x64-gnu": "19.5.6",
"@nx/nx-linux-x64-musl": "19.5.6",
"@nx/nx-win32-x64-msvc": "19.5.6",
"@nx/nx-linux-arm64-gnu": "19.5.6",
"@nx/nx-linux-arm64-musl": "19.5.6",
"@nx/nx-linux-arm-gnueabihf": "19.5.6",
"@nx/nx-win32-arm64-msvc": "19.5.6",
"@nx/nx-freebsd-x64": "19.5.6"
},

@@ -102,0 +102,0 @@ "nx-migrations": {

@@ -7,5 +7,5 @@ import { ConnectToNxCloudOptions } from '../../nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud';

export declare function connectToNxCloudIfExplicitlyAsked(opts: NxArgs): Promise<void>;
export declare function connectWorkspaceToCloud(options: ConnectToNxCloudOptions): Promise<string>;
export declare function connectWorkspaceToCloud(options: ConnectToNxCloudOptions, directory?: string): Promise<string>;
export declare function connectToNxCloudCommand(command?: string): Promise<boolean>;
export declare function connectExistingRepoToNxCloudPrompt(command?: string, key?: MessageKey): Promise<boolean>;
export declare function connectToNxCloudWithPrompt(command: string): Promise<void>;

@@ -49,7 +49,7 @@ "use strict";

}
async function connectWorkspaceToCloud(options) {
const tree = new tree_1.FsTree(workspace_root_1.workspaceRoot, false, 'connect-to-nx-cloud');
async function connectWorkspaceToCloud(options, directory = workspace_root_1.workspaceRoot) {
const tree = new tree_1.FsTree(directory, false, 'connect-to-nx-cloud');
const accessToken = await (0, connect_to_nx_cloud_1.connectToNxCloud)(tree, options);
tree.lock();
(0, tree_1.flushChanges)(workspace_root_1.workspaceRoot, tree.listChanges());
(0, tree_1.flushChanges)(directory, tree.listChanges());
return accessToken;

@@ -56,0 +56,0 @@ }

Sorry, the diff of this file is not supported yet

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