Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
gulp-vssln-dependencies
Advanced tools
Creates an ordered list of projects from the projects dependency graph inside a Visual Studio Solution (sln) file.
Returns an ordered list of projects from the projects dependency graph in a Visual Studio Solution (sln) file.
Dependencies are resolved using the information created by the "Project Dependencies" tab in the "Solution Properties" window of Visual Studio. Project references set using the "References" item inside each project are not considered.
gulp-vssln-dependencies returns the projects inside the solution file in build order. That is, if project A depends on project B, then B is returned first, A afterwards.
Install package with NPM and add it to your development dependencies:
npm install gulp-vssln-dependencies --save-dev
var vsprojects = require("gulp-vssln-dependencies");
var gulp = require("gulp");
var tap = require('gulp-tap');
gulp.task('default', function () {
return gulp.src("test.sln")
.pipe(vsprojects())
.pipe(tap(function (file) {
// Instead of using tap, you could just use any other gulp plugin...
console.log(file.path);
}))
});
FAQs
Creates an ordered list of projects from the projects dependency graph inside a Visual Studio Solution (sln) file.
The npm package gulp-vssln-dependencies receives a total of 0 weekly downloads. As such, gulp-vssln-dependencies popularity was classified as not popular.
We found that gulp-vssln-dependencies demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.