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

@nx-dotnet/core

Package Overview
Dependencies
Maintainers
1
Versions
230
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-dotnet/core - npm Package Compare versions

Comparing version 0.0.6-dev.43 to 0.0.6-dev.44

7

package.json
{
"name": "@nx-dotnet/core",
"version": "0.0.6-dev.43",
"version": "0.0.6-dev.44",
"main": "src/index.js",

@@ -9,5 +9,6 @@ "generators": "./generators.json",

"dependencies": {
"@nx-dotnet/dotnet": "0.0.6-dev.43",
"@nx-dotnet/utils": "0.0.6-dev.43"
"@nx-dotnet/dotnet": "0.0.6-dev.44",
"@nx-dotnet/utils": "0.0.6-dev.44",
"chokidar": "^3.5.1"
}
}

@@ -10,16 +10,17 @@ "use strict";

const nxProjectConfiguration = utils_1.getExecutedProjectConfiguration(context);
const projectFilePath = utils_1.getProjectFileForNxProject(nxProjectConfiguration);
return new Promise((resolve) => {
resolver = resolve;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const watcher = chockidar
.watch(nxProjectConfiguration.root)
.on('all', () => {
if (childProcess) {
childProcess.kill(0);
}
dotnetClient.run(projectFilePath, Object.keys(options).map((x) => ({
flag: x,
value: options[x],
})));
return utils_1.getProjectFileForNxProject(nxProjectConfiguration).then(project => {
return new Promise((resolve) => {
resolver = resolve;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const watcher = chockidar
.watch(nxProjectConfiguration.root)
.on('all', () => {
if (childProcess) {
childProcess.kill(0);
}
dotnetClient.run(project, Object.keys(options).map((x) => ({
flag: x,
value: options[x],
})));
});
});

@@ -26,0 +27,0 @@ });

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

serve: {
executor: '@nx-dotnet/core:build',
executor: '@nx-dotnet/core:serve',
options: {

@@ -47,0 +47,0 @@ configuration: 'Debug'

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