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

broccoli-output-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-output-wrapper - npm Package Compare versions

Comparing version 3.2.1 to 3.2.3

6

dist/index.d.ts
/// <reference types="node" />
import * as fs from 'fs';
import { readFileSync, existsSync, readdirSync, lstatSync, statSync, writeFileSync, appendFileSync, rmdirSync, mkdirSync, symlinkSync, utimesSync } from 'fs';
import { readFileSync, existsSync, readdirSync, lstatSync, statSync, writeFileSync, appendFileSync, mkdirSync, symlinkSync, utimesSync } from 'fs';
declare function outputWrapper(node: any): outputWrapper.FSOutput;

@@ -15,3 +15,5 @@ export = outputWrapper;

appendFileSync: typeof appendFileSync;
rmdirSync: typeof rmdirSync;
rmdirSync: (path: string, options?: {
recursive?: boolean;
}) => void;
mkdirSync: typeof mkdirSync;

@@ -18,0 +20,0 @@ unlinkSync: typeof fs.unlinkSync;

{
"name": "broccoli-output-wrapper",
"version": "3.2.1",
"version": "3.2.3",
"description": "Output wrapper is a library to write output file to outputpath.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

import * as fs from 'fs';
import { isAbsolute, resolve } from 'path';
import { readFileSync, existsSync, readdirSync, lstatSync, statSync, writeFileSync, appendFileSync, rmdirSync, mkdirSync, symlinkSync, utimesSync } from 'fs';
import { readFileSync, existsSync, readdirSync, lstatSync, statSync, writeFileSync, appendFileSync, mkdirSync, symlinkSync, utimesSync } from 'fs';
import { removeSync, outputFileSync } from 'fs-extra';

@@ -80,3 +80,4 @@ const symlinkOrCopySync = require('symlink-or-copy').sync;

appendFileSync: typeof appendFileSync,
rmdirSync: typeof rmdirSync,
// TODO: node 10 reaches EOL and node 12 becomes LTS, we should revert this change.
rmdirSync: (path: string, options?: { recursive?: boolean; }) => void,
mkdirSync: typeof mkdirSync,

@@ -83,0 +84,0 @@ unlinkSync: typeof fs.unlinkSync,

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