diff --git a/classes/index.js b/classes/index.js index e55bbe7f..c38bff4d 100644 --- a/classes/index.js +++ b/classes/index.js @@ -1,5 +1,3 @@ -'use strict'; - import Ping from './ping.js'; import Alias from './alias.js'; import Meta from './meta.js'; diff --git a/classes/login.js b/classes/login.js index fc945307..bce05250 100644 --- a/classes/login.js +++ b/classes/login.js @@ -1,5 +1,3 @@ -'use strict'; - import abslog from 'abslog'; import eik from '@eik/common'; import { request } from '../utils/http/index.js'; diff --git a/commands/map-alias.js b/commands/map-alias.js index 644f3aa8..69a19657 100644 --- a/commands/map-alias.js +++ b/commands/map-alias.js @@ -1,5 +1,3 @@ -'use strict'; - import ora from 'ora'; import Alias from '../classes/alias.js'; import { logger, getDefaults, getCWD } from '../utils/index.js'; diff --git a/commands/map.js b/commands/map.js index b55e4f30..f6d79a91 100644 --- a/commands/map.js +++ b/commands/map.js @@ -1,5 +1,3 @@ -'use strict'; - import { join } from 'path'; import ora from 'ora'; import PublishMap from '../classes/publish/map.js'; diff --git a/test/fixtures/client.js b/test/fixtures/client.js index 6ae893a3..201c57ea 100644 --- a/test/fixtures/client.js +++ b/test/fixtures/client.js @@ -1,5 +1,3 @@ -'use strict'; - const main = () => { const thing = 'this is a test fixture'; return thing; diff --git a/test/utils.test.mjs b/test/utils.test.mjs index c5cc3601..33e51cd9 100644 --- a/test/utils.test.mjs +++ b/test/utils.test.mjs @@ -17,7 +17,7 @@ test('calculate file hash', async (t) => { const hash = await h.file(join(__dirname, 'fixtures', 'client.js')); t.equal( hash, - 'sha512-7y37q0qk5mDqzHrGvJAR9J8kPX+orJhuO+KrCTKw11ZKRI/5udUuKt2Zb/thH5H39OQYrvnHTLbZS9ShG/lGCg==', + 'sha512-AzZUEv6TzJOlb7MOJSkAtFDihZnjCqOjgWqQmRlQj+/9CsWGQKGJzOT1CPp2R9PQlA0dd3B1+xrrgLsDX9OFtQ==', 'returned hash should match', ); });