Socket
Socket
Sign inDemoInstall

@platform/fs

Package Overview
Dependencies
Maintainers
1
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@platform/fs - npm Package Compare versions

Comparing version 0.6.0 to 0.6.3

2

lib/common/libs.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.dirname = exports.extname = exports.basename = exports.resolve = exports.join = exports.fs = exports.yaml = void 0;
exports.fs = exports.yaml = void 0;
var yaml = require("js-yaml");

@@ -5,0 +5,0 @@ exports.yaml = yaml;

@@ -110,6 +110,6 @@ /// <reference types="node" />

ensureLinkSync(src: string, dest: string): void;
ensureSymlink(src: string, dest: string, type?: "file" | "dir" | undefined): Promise<void>;
ensureSymlink(src: string, dest: string, type?: "file" | "dir" | "junction" | undefined): Promise<void>;
ensureSymlink(src: string, dest: string, type: fsExtra.SymlinkType, callback: (err: Error) => void): void;
ensureSymlink(src: string, dest: string, callback: (err: Error) => void): void;
ensureSymlinkSync(src: string, dest: string, type?: "file" | "dir" | undefined): void;
ensureSymlinkSync(src: string, dest: string, type?: "file" | "dir" | "junction" | undefined): void;
emptyDir(path: string): Promise<void>;

@@ -116,0 +116,0 @@ emptyDir(path: string, callback: (err: Error) => void): void;

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

export * from './fs';
import { fs } from './fs';
export { fs };
export default fs;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./fs"), exports);
exports.fs = void 0;
var fs_1 = require("./fs");
Object.defineProperty(exports, "fs", { enumerable: true, get: function () { return fs_1.fs; } });
exports.default = fs_1.fs;
{
"name": "@platform/fs",
"version": "0.6.0",
"version": "0.6.3",
"description": "POSIX style file-system tools.",

@@ -14,7 +14,7 @@ "main": "lib/index",

"dependencies": {
"@platform/fs.types": "0.1.0",
"@platform/types": "0.5.9",
"@types/fs-extra": "9.0.3",
"@platform/fs.types": "0.1.2",
"@platform/types": "0.5.11",
"@types/fs-extra": "9.0.4",
"@types/js-yaml": "3.12.5",
"archiver": "5.0.2",
"archiver": "5.1.0",
"dotenv": "8.2.0",

@@ -29,5 +29,5 @@ "extract-zip": "2.0.1",

"devDependencies": {
"@platform/test": "0.1.17",
"@platform/ts.libs": "4.0.2",
"@types/archiver": "3.1.1",
"@platform/test": "0.2.0",
"@platform/ts.libs": "4.1.0",
"@types/archiver": "5.1.0",
"@types/dotenv": "8.2.0",

@@ -34,0 +34,0 @@ "@types/extract-zip": "1.6.2",

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