-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.js
26 lines (26 loc) · 951 Bytes
/
join.js
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
// Coze Core
// `join.js` instructs esbuild to join all Coze core files into one file.
//
// From ESBuild for multiple files:
//
// > Note that bundling is different than file concatenation. Passing esbuild
// multiple input files with bundling enabled will create multiple separate
// bundles instead of joining the input files together. To join a set of files
// together with esbuild, import them all into a single entry point file and
// bundle just that one file with esbuild.
//
// For production, use the following:
// ```
// esbuild join.js --bundle --format=esm --minify --sourcemap --outfile=coze.min.js
// ```
//
// For single file, human readable/debuggable Javascript.
// ```
// esbuild join.js --bundle --format=esm --outfile=coze.join.js
// ```
//
export * from './canon.js';
export * from './alg.js';
export * from './coze.js';
export * from './key.js';
export * from './cryptokey.js';