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

@nrwl/devkit

Package Overview
Dependencies
Maintainers
1
Versions
1325
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nrwl/devkit - npm Package Compare versions

Comparing version 11.0.0-beta.7 to 11.0.0-beta.8

8

package.json
{
"name": "@nrwl/devkit",
"version": "11.0.0-beta.7",
"version": "11.0.0-beta.8",
"description": "Extensible Dev Tools for Monorepos",

@@ -29,5 +29,7 @@ "repository": {

"dependencies": {
"@nrwl/tao": "11.0.0-beta.7",
"ejs": "^3.1.5"
"@nrwl/tao": "11.0.0-beta.8",
"ejs": "^3.1.5",
"strip-json-comments": "2.0.1",
"tslib": "^2.0.0"
}
}

@@ -89,3 +89,13 @@ <p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx.png" width="600"></p>

<tr>
<td><strong>Scale React Development with Nx</strong></td>
<td><strong>Nx Workspaces</strong></td>
<td><strong>Advanced Nx Workspaces</strong></td>
</tr>
<tr>
<td>
<a href="https://egghead.io/playlists/scale-react-development-with-nx-4038" target="_blank">
<p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/EGH_ScalingReactNx.png" height="150px"></p>
</a>
</td>
<td>
<a href="https://www.youtube.com/watch?v=2mYLe9Kp9VM&list=PLakNactNC1dH38AfqmwabvOszDmKriGco" target="_blank">

@@ -95,3 +105,3 @@ <p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-workspace-course.png" width="350"></p>

</td>
<td>
<td>
<a href="https://nxplaybook.com/p/advanced-nx-workspaces" target="_blank">

@@ -98,0 +108,0 @@ <p align="center"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/advanced-nx-workspace-course.png" width="350"></p>

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.installPackagesTask = void 0;
const detect_package_manager_1 = require("@nrwl/tao/src/shared/detect-package-manager");
const package_manager_1 = require("@nrwl/tao/src/shared/package-manager");
const child_process_1 = require("child_process");

@@ -19,3 +19,4 @@ let storedPackageJsonValue;

storedPackageJsonValue = host.read('package.json').toString();
child_process_1.execSync(`${detect_package_manager_1.detectPackageManager()} install`, {
const pmc = package_manager_1.getPackageManagerCommand();
child_process_1.execSync(pmc.install, {
cwd: host.root,

@@ -22,0 +23,0 @@ stdio: [0, 1, 2],

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