๐Ÿ“ฆ Akryum / meteor-vite

๐Ÿ“„ index.ts ยท 34 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34/**
 * Check if text casing is being handled as expected.
 */
import { Meteor } from 'meteor/meteor'

export const first = 'lowercase'
export const FIRST = 'UPPERCASE'

/**
 * Check export bracket exports
 */
const b = 2
const c = 3
export { b, c }

export function namedFunction() {
  return 'bar'
}
export default namedFunction

export { Meteor as MyMeteor } from 'meteor/meteor'

export * from 'meteor/tracker'

export { Meteor as ReExportedMeteor } from 'meteor/meteor'

export { NamedRelativeInteger } from './relative-module'

export * from './export-star-from'

export { WhereAmI as WhereIsTheSubmodule } from './subdirectory/module-in-subdirectory'

console.log(Meteor.version)