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.3 to 11.2.0-beta.4

4

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

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

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

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

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

const fs = require("fs");
const path_1 = require("../utils/path");
const path_1 = require("path");
const ejs = require('ejs');

@@ -35,5 +35,6 @@ /**

allFilesInDir(srcFolder).forEach((f) => {
const relativeToTarget = replaceSegmentsInPath(f.substring(srcFolder.length), substitutions);
const relativeFromSrcFolder = path_1.relative(srcFolder, f);
const newPath = path_1.join(target, relativeFromSrcFolder);
const newContent = ejs.render(fs.readFileSync(f).toString(), substitutions);
host.write(path_1.joinPathFragments(target, relativeToTarget), newContent);
host.write(replaceSegmentsInPath(newPath, substitutions), newContent);
});

@@ -52,3 +53,3 @@ }

fs.readdirSync(parent).forEach((c) => {
const child = path_1.joinPathFragments(parent, c);
const child = path_1.join(parent, c);
try {

@@ -55,0 +56,0 @@ const s = fs.statSync(child);

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