Socket
Socket
Sign inDemoInstall

@nrwl/devkit

Package Overview
Dependencies
Maintainers
1
Versions
1295
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.2.0-beta.4 to 11.2.0-rc.1

4

package.json
{
"name": "@nrwl/devkit",
"version": "11.2.0-beta.4",
"version": "11.2.0-rc.1",
"description": "Extensible Dev Tools for Monorepos",

@@ -29,3 +29,3 @@ "repository": {

"dependencies": {
"@nrwl/tao": "11.2.0-beta.4",
"@nrwl/tao": "11.2.0-rc.1",
"ejs": "^3.1.5",

@@ -32,0 +32,0 @@ "ignore": "^5.0.4",

@@ -19,15 +19,5 @@ "use strict";

function joinPathFragments(...fragments) {
const normalizedFragments = [];
for (let i = 0; i < fragments.length; ++i) {
if (i === 0) {
normalizedFragments.push(normalizePath(fragments[i]));
}
else {
const n = normalizePath(fragments[i]);
normalizedFragments.push(n.startsWith('/') ? n.substring(1) : n);
}
}
return normalizedFragments.join('/');
return normalizePath(path.join(...fragments));
}
exports.joinPathFragments = joinPathFragments;
//# sourceMappingURL=path.js.map

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