parent
691ca01c3e
commit
5f9f5a7ab8
@ -1,4 +1,4 @@ |
||||
import { Session } from './Session'; |
||||
import { Session } from '../Session'; |
||||
|
||||
export class ClientSession extends Session { |
||||
async init(): Promise<string> { |
@ -1,4 +1,4 @@ |
||||
import { Session } from './Session'; |
||||
import { Session } from '../Session'; |
||||
|
||||
export type ProcessString = (text: string[]) => string; |
||||
export type ProcessBuffer = (text: Buffer) => Buffer[]; |
@ -0,0 +1 @@ |
||||
../../node_modules/poly1305-js |
@ -0,0 +1 @@ |
||||
../../node_modules/sodium-native |
@ -0,0 +1,15 @@ |
||||
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 }); |
||||
}); |
Loading…
Reference in new issue