Fix build

This commit is contained in:
Chewbacca 2022-11-16 09:00:19 -05:00
parent 774b627397
commit 17b0c45a3e
2 changed files with 3 additions and 3 deletions

View File

@ -20,9 +20,9 @@ module.exports = {
'app/soapbox/**/*.js', 'app/soapbox/**/*.js',
'app/soapbox/**/*.ts', 'app/soapbox/**/*.ts',
'app/soapbox/**/*.tsx', '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/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-setup.ts',
'!app/soapbox/jest/test-helpers.ts', '!app/soapbox/jest/test-helpers.ts',
], ],

View File

@ -95,7 +95,7 @@ const configuration: Configuration = {
], ],
ServiceWorker: { ServiceWorker: {
cacheName: 'soapbox', cacheName: 'soapbox',
entry: join(__dirname, '../app/soapbox/service_worker/entry.ts'), entry: join(__dirname, '../app/soapbox/service-worker/entry.ts'),
events: true, events: true,
minify: true, minify: true,
}, },