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

@chialab/estransform

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chialab/estransform - npm Package Compare versions

Comparing version 0.18.0-alpha.1 to 0.18.0

4

package.json
{
"name": "@chialab/estransform",
"type": "module",
"version": "0.18.0-alpha.1",
"version": "0.18.0",
"description": "Execute multiple transformations on JavaScript sources with full sourcemaps support.",

@@ -32,3 +32,3 @@ "main": "dist/index.js",

"engines": {
"node": ">=13"
"node": ">=18"
},

@@ -35,0 +35,0 @@ "dependencies": {

@@ -8,2 +8,2 @@ /**

*/
export function parseEsm(code: string): Promise<readonly [imports: readonly import("es-module-lexer").ImportSpecifier[], exports: readonly import("es-module-lexer").ExportSpecifier[], facade: boolean]>;
export function parseEsm(code: string): Promise<readonly [imports: readonly import("es-module-lexer").ImportSpecifier[], exports: readonly import("es-module-lexer").ExportSpecifier[], facade: boolean, hasModuleSyntax: boolean]>;

@@ -43,3 +43,3 @@ /**

code: string;
map: SourceMap | null;
map: any;
}>;

@@ -46,0 +46,0 @@ };

@@ -28,11 +28,3 @@ /**

*/
export function mergeSourcemaps(sourceMaps: SourceMap[]): Promise<{
version: number;
sources: string[];
names: string[];
sourceRoot?: string | undefined;
sourcesContent?: string[] | undefined;
mappings: string;
file?: string | undefined;
} | null>;
export function mergeSourcemaps(sourceMaps: SourceMap[]): Promise<any>;
/**

@@ -39,0 +31,0 @@ * @param {string} code

Sorry, the diff of this file is too big to display

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