🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

appstash

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appstash - npm Package Compare versions

Comparing version
0.6.0
to
0.7.0
+1
-1
esm/index.d.ts

@@ -24,3 +24,3 @@ /**

export interface AppStashOptions {
/** Base directory (defaults to os.homedir()) */
/** Base directory (defaults to APPSTASH_BASE_DIR env var, then os.homedir()) */
baseDir?: string;

@@ -27,0 +27,0 @@ /** Use XDG fallback if home fails (default: true) */

@@ -65,2 +65,5 @@ import * as fs from 'fs';

}
else if (process.env.APPSTASH_BASE_DIR) {
base = process.env.APPSTASH_BASE_DIR;
}
else {

@@ -67,0 +70,0 @@ const home = getHomeDir();

@@ -24,3 +24,3 @@ /**

export interface AppStashOptions {
/** Base directory (defaults to os.homedir()) */
/** Base directory (defaults to APPSTASH_BASE_DIR env var, then os.homedir()) */
baseDir?: string;

@@ -27,0 +27,0 @@ /** Use XDG fallback if home fails (default: true) */

@@ -104,2 +104,5 @@ "use strict";

}
else if (process.env.APPSTASH_BASE_DIR) {
base = process.env.APPSTASH_BASE_DIR;
}
else {

@@ -106,0 +109,0 @@ const home = getHomeDir();

{
"name": "appstash",
"version": "0.6.0",
"version": "0.7.0",
"author": "Constructive <developers@constructive.io>",

@@ -43,3 +43,3 @@ "description": "Simple, clean application directory resolution",

],
"gitHead": "276d21250b952f110b9d8a509616ffd1cf5871e7"
"gitHead": "febc209cbaea97a5976b0554fdb4e1780f6b9618"
}