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 prettyBytes from 'pretty-bytes'
import { AppScan } from '~/helpers/scanner/client'
import { AppScan } from '~/helpers/scanner/client.mjs'
const scannerVersion = (() => {
// If there's no window

View file

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