Convertr scanner client to mjs

This commit is contained in:
Sam Carlton 2022-07-21 21:52:12 -05:00
parent 78f3b7a04a
commit ca58913ccc
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ import { isString } from './check-types.js'
import parseMacho from './macho/index.js' import parseMacho from './macho/index.js'
import prettyBytes from 'pretty-bytes' import prettyBytes from 'pretty-bytes'
import { AppScan } from '~/helpers/scanner/client' import { AppScan } from '~/helpers/scanner/client.mjs'
const scannerVersion = (() => { const scannerVersion = (() => {
// If there's no window // If there's no window

View file

@ -36,8 +36,8 @@ const tempPath = 'test/_artifacts/temp'
const plainAppBundles = glob const plainAppBundles = glob
.sync( `${ appsPath }/**/*.app`, appGlobOptions ) .sync( `${ appsPath }/**/*.app`, appGlobOptions )
.filter( bundlePath => { .filter( bundlePath => {
// return true return true
return bundlePath.includes( 'App' ) // return bundlePath.includes( 'AV' )
}) })