diff --git a/jest.config.js b/jest.config.js index 468401c51..396486a39 100644 --- a/jest.config.js +++ b/jest.config.js @@ -20,9 +20,9 @@ module.exports = { 'app/soapbox/**/*.js', 'app/soapbox/**/*.ts', 'app/soapbox/**/*.tsx', - '!app/soapbox/features/emoji/emoji_compressed.js', + '!app/soapbox/features/emoji/emoji-compressed.js', '!app/soapbox/locales/locale-data/*.js', - '!app/soapbox/service_worker/entry.ts', + '!app/soapbox/service-worker/entry.ts', '!app/soapbox/jest/test-setup.ts', '!app/soapbox/jest/test-helpers.ts', ], diff --git a/webpack/production.ts b/webpack/production.ts index 9632754ce..a1af5a0f9 100644 --- a/webpack/production.ts +++ b/webpack/production.ts @@ -95,7 +95,7 @@ const configuration: Configuration = { ], ServiceWorker: { cacheName: 'soapbox', - entry: join(__dirname, '../app/soapbox/service_worker/entry.ts'), + entry: join(__dirname, '../app/soapbox/service-worker/entry.ts'), events: true, minify: true, },