Browse Source

WIP: service worker importScripts compatible

master
Matthew Raymer 11 months ago
parent
commit
a5e367fdf1
  1. 2
      dist/safari-notifications.js
  2. 5
      src/safari-notifications.js
  3. 30
      webpack.config.js

2
dist/safari-notifications.js

File diff suppressed because one or more lines are too long

5
src/safari-notifications.js

@ -469,7 +469,4 @@ async function getNotificationCount() {
return result;
}
module.exports = {
getNotificationCount
};
export { getNotificationCount };

30
webpack.config.js

@ -1,18 +1,22 @@
const path = require('path');
module.exports = {
entry: './src/safari-notifications.js',
output: {
filename: 'safari-notifications.js',
path: path.resolve(__dirname, 'dist'),
library: 'customModule',
libraryTarget: 'var'
},
mode: 'production',
target: 'webworker',
resolve: {
fallback: {
"crypto": false // This might be needed if some module tries to access node's crypto, which is not available in browsers
entry: './src/safari-notifications.js',
output: {
filename: 'safari-notifications.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'self'
},
optimization: {
splitChunks: {
chunks: 'async'
}
},
mode: 'production',
target: 'webworker',
resolve: {
fallback: {
"crypto": false // This might be needed if some module tries to access node's crypto, which is not available in browsers
}
}
}
};

Loading…
Cancel
Save