The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/react-fast-refresh/package.js

15 lines
401 B

Package.describe({
name: 'react-fast-refresh',
version: '0.1.0',
summary: 'Removed -update React components with HMR',
documentation: 'README.md',
devOnly: true,
});
Package.onUse(function(api) {
api.export('ReactFastRefresh');
api.use('modules');
api.addFiles('server.js', 'server');
api.addFiles('client-runtime.js', 'web.browser');
api.use('hot-module-replacement', { weak: true });
});