Skip to content

v7.1.0

Compare
Choose a tag to compare
@fraxken fraxken released this 15 May 12:48
· 46 commits to master since this release

What's Changed

EntryFilesAnalyzer

import { EntryFilesAnalyser } from "@nodesecure/js-x-ray";

const efa = new EntryFilesAnalyser();
const entryFiles = ["./path/to/file"];

for await (const fileResult of efa.analyse(entryFiles)) {
  console.log(entryFiles);
}

New Contributors

Full Changelog: v7.0.0...v7.1.0