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

@travetto/manifest

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/manifest - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2-rc.0

2

package.json
{
"name": "@travetto/manifest",
"version": "3.0.1",
"version": "3.0.2-rc.0",
"description": "Support for project indexing, manifesting, along with file watching",

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

@@ -99,3 +99,3 @@ <!-- This file was generated by @travetto/doc and should not be modified directly -->

export type WatchEvent = { action: 'create' | 'update' | 'delete', file: string };
type EventFilter = (ev: WatchEvent) => boolean;
export type WatchEventFilter = (ev: WatchEvent) => boolean;

@@ -107,3 +107,3 @@ export type WatchEventListener = (ev: WatchEvent, folder: string) => void;

*/
filter?: EventFilter;
filter?: WatchEventFilter;
/**

@@ -124,11 +124,11 @@ * List of top level folders to ignore

/**
* Leverages @parcel/watcher to watch a series of folders
* @param folders
* Watch files for a given folder
* @param folder
* @param onEvent
* @private
* @param options
*/
export async function watchFolders(
folders: string[] | [folder: string, targetFolder: string][],
export async function watchFolderImmediate(
folder: string,
onEvent: WatchEventListener,
config: WatchConfig = {}
options: WatchConfig = {}
): Promise<() => Promise<void>> {

@@ -135,0 +135,0 @@ ```

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