New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

flex-dev-utils

Package Overview
Dependencies
Maintainers
8
Versions
330
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-dev-utils - npm Package Compare versions

Comparing version 4.3.6-beta.0 to 4.3.9-beta.0

19

dist/fs.js

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

}
var index = args.indexOf('--core-cwd');
if (index !== -1) {
var coreCwd = args[index + 1];
var indexCoreCwd = args.indexOf('--core-cwd');
if (indexCoreCwd !== -1) {
var coreCwd = args[indexCoreCwd + 1];
if (coreCwd) {

@@ -380,4 +380,13 @@ exports.setCoreCwd(coreCwd);

}
// This is to setup the app environment
exports.setCwd(exports.getCwd());
var indexCwd = args.indexOf('--core-cwd');
if (indexCwd !== -1) {
var cwd = args[indexCwd + 1];
if (cwd) {
exports.setCwd(cwd);
}
}
else {
// This is to setup the app environment
exports.setCwd(exports.getCwd());
}
};

@@ -384,0 +393,0 @@ /**

@@ -14,3 +14,3 @@ export { default as fs } from './fs';

export { default as validators } from './validators';
export { default as spawn } from './spawn';
export { default as spawn, SpawnPromise } from './spawn';
export { default as axios } from './axios';

@@ -17,0 +17,0 @@ export { default as prints } from './prints';

@@ -1,1 +0,1 @@

export { spawn as default } from 'flex-plugins-utils-spawn';
export { spawn as default, SpawnPromise } from 'flex-plugins-utils-spawn';
{
"name": "flex-dev-utils",
"version": "4.3.6-beta.0",
"version": "4.3.9-beta.0",
"description": "Common development utility for creating a Flex plugin",

@@ -41,5 +41,5 @@ "keywords": [

"copy-template-dir": "^1.4.0",
"flex-plugins-utils-exception": "^0.17.1",
"flex-plugins-utils-logger": "^0.17.1",
"flex-plugins-utils-spawn": "^0.17.1",
"flex-plugins-utils-exception": "^0.18.0",
"flex-plugins-utils-logger": "^0.18.0",
"flex-plugins-utils-spawn": "^0.18.2",
"globby": "^11.0.1",

@@ -73,3 +73,3 @@ "lodash": "^4.17.20",

},
"gitHead": "102be9f7eb949d5eefae9d4cee6db3283fb4c94a"
"gitHead": "a0272e22697f2d9972bd20494f2468704a9c08d1"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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