-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathmod.ts
440 lines (407 loc) · 13.2 KB
/
mod.ts
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import {
getCompilerScriptTarget,
getCompilerSourceMapOptions,
getTopLevelAwait,
outputDiagnostics,
SourceMapOptions,
transformCodeToTarget,
} from "./lib/compiler.ts";
import { colors, createProjectSync, path, ts } from "./lib/mod.deps.ts";
import { ShimOptions, shimOptionsToTransformShims } from "./lib/shims.ts";
import { getNpmIgnoreText } from "./lib/npm_ignore.ts";
import { PackageJsonObject } from "./lib/types.ts";
import { glob, runNpmCommand } from "./lib/utils.ts";
import {
Redirects,
SpecifierMappings,
transform,
TransformOutput,
} from "./transform.ts";
import * as compilerTransforms from "./lib/compiler_transforms.ts";
import { getPackageJson } from "./lib/package_json.ts";
import { ScriptTarget } from "./lib/compiler.ts";
import { getTestRunnerCode } from "./lib/test_runner/get_test_runner_code.ts";
export type { ShimOptions } from "./lib/shims.ts";
export interface EntryPoint {
/**
* If the entrypoint is for an npm binary or export.
* @default "export"
*/
kind?: "bin" | "export";
/** Name of the entrypoint in the "binary" or "exports". */
name: string;
/** Path to the entrypoint. */
path: string;
}
export interface BuildOptions {
/** Entrypoint(s) to the Deno module. Ex. `./mod.ts` */
entryPoints: (string | EntryPoint)[];
/** Directory to output to. */
outDir: string;
/** Shims to use. */
shims: ShimOptions;
/** Type check the output.
* @default true
*/
typeCheck?: boolean;
/** Collect and run test files.
* @default true
*/
test?: boolean;
/** Create declaration files.
* @default true
*/
declaration?: boolean;
/** Include a CommonJS module.
* @default true
*/
cjs?: boolean;
/** Skip outputting the canonical TypeScript in the output directory before emitting.
* @default false
*/
skipSourceOutput?: boolean;
/** Root directory to find test files in. Defaults to the cwd. */
rootTestDir?: string;
/** Glob pattern to use to find tests files. Defaults to `deno test`'s pattern. */
testPattern?: string;
/** Specifiers to map from and to a bare specifier with optional version. */
mappings?: SpecifierMappings;
/**
* Specifiers to redirect from and to. This will cause dnt to do a redirect
* and can be useful for using different modules in the output.
*
* For example, you may wish to create a node specific file then do:
*
* ```
* redirect: {
* "./file.deno.ts": "./file.node.ts",
* }
* ```
*/
redirects?: Redirects;
/** Package.json output. You may override dependencies and dev dependencies in here. */
package: PackageJsonObject;
/** Package manager used to install dependencies and run npm scripts.
* This also can be an absolute path to the executable file of package manager.
* @default "npm"
*/
packageManager?: "npm" | "yarn" | "pnpm" | string;
/** Optional compiler options. */
compilerOptions?: {
/** Uses tslib to import helper functions once per project instead of including them per-file if necessary.
* @default false
*/
importHelpers?: boolean;
target?: ScriptTarget;
/**
* Use source maps from the canonical typescript to ESM/CommonJS emit.
*
* Specify `true` to include separate files or `"inline"` to inline the source map in the same file.
* @remarks Using this option will cause your sources to be included in the npm package.
* @default false
*/
sourceMap?: SourceMapOptions;
/**
* Whether to include the source file text in the source map when using source maps.
* @remarks It's not recommended to do this if you are distributing both ESM and CommonJS
* sources as then it will duplicate the the source data being published.
*/
inlineSources?: boolean;
};
}
/** Emits the specified Deno module to an npm package using the TypeScript compiler. */
export async function build(options: BuildOptions): Promise<void> {
// set defaults
options = {
...options,
cjs: options.cjs ?? true,
typeCheck: options.typeCheck ?? true,
test: options.test ?? true,
declaration: options.declaration ?? true,
};
const packageManager = options.packageManager ?? "npm";
const entryPoints: EntryPoint[] = options.entryPoints.map((e, i) => {
if (typeof e === "string") {
return {
name: i === 0 ? "." : e.replace(/\.tsx?$/i, ".js"),
path: e,
};
} else {
return e;
}
});
await Deno.permissions.request({ name: "write", path: options.outDir });
log("Transforming...");
const transformOutput = await transformEntryPoints();
for (const warning of transformOutput.warnings) {
warn(warning);
}
const createdDirectories = new Set<string>();
const writeFile = ((filePath: string, fileText: string) => {
const dir = path.dirname(filePath);
if (!createdDirectories.has(dir)) {
Deno.mkdirSync(dir, { recursive: true });
createdDirectories.add(dir);
}
Deno.writeTextFileSync(filePath, fileText);
});
createPackageJson();
createNpmIgnore();
// npm install in order to prepare for checking TS diagnostics
log("Running npm install...");
const npmInstallPromise = runNpmCommand({
bin: packageManager,
args: ["install"],
cwd: options.outDir,
});
if (options.typeCheck || options.declaration) {
// Unfortunately this can't be run in parallel to building the project
// in this case because TypeScript will resolve the npm packages when
// creating the project.
await npmInstallPromise;
}
log("Building project...");
const esmOutDir = path.join(options.outDir, "esm");
const umdOutDir = path.join(options.outDir, "umd");
const typesOutDir = path.join(options.outDir, "types");
const compilerScriptTarget = getCompilerScriptTarget(
options.compilerOptions?.target,
);
const project = createProjectSync({
compilerOptions: {
outDir: typesOutDir,
allowJs: true,
alwaysStrict: true,
stripInternal: true,
strictBindCallApply: true,
strictFunctionTypes: true,
strictNullChecks: true,
strictPropertyInitialization: true,
suppressExcessPropertyErrors: false,
suppressImplicitAnyIndexErrors: false,
noImplicitAny: true,
noImplicitReturns: false,
noImplicitThis: true,
noStrictGenericChecks: false,
noUncheckedIndexedAccess: false,
declaration: options.declaration,
esModuleInterop: false,
isolatedModules: true,
useDefineForClassFields: true,
experimentalDecorators: true,
jsx: ts.JsxEmit.React,
jsxFactory: "React.createElement",
jsxFragmentFactory: "React.Fragment",
importsNotUsedAsValues: ts.ImportsNotUsedAsValues.Remove,
module: ts.ModuleKind.ESNext,
moduleResolution: ts.ModuleResolutionKind.NodeJs,
target: compilerScriptTarget,
allowSyntheticDefaultImports: true,
importHelpers: options.compilerOptions?.importHelpers,
...getCompilerSourceMapOptions(options.compilerOptions?.sourceMap),
inlineSources: options.compilerOptions?.inlineSources,
},
});
const binaryEntryPointPaths = new Set(
entryPoints.map((e, i) => ({
kind: e.kind,
path: transformOutput.main.entryPoints[i],
})).filter((p) => p.kind === "bin").map((p) => p.path),
);
for (
const outputFile of [
...transformOutput.main.files,
...transformOutput.test.files,
]
) {
const outputFilePath = path.join(
options.outDir,
"src",
outputFile.filePath,
);
const outputFileText = binaryEntryPointPaths.has(outputFile.filePath)
? `#!/usr/bin/env node\n${outputFile.fileText}`
: outputFile.fileText;
const sourceFile = project.createSourceFile(
outputFilePath,
outputFileText,
);
if (options.cjs) {
// cjs does not support TLA so error fast if we find one
const tlaLocation = getTopLevelAwait(sourceFile);
if (tlaLocation) {
warn(
`Top level await cannot be used when distributing CommonJS ` +
`(See ${outputFile.filePath} ${tlaLocation.line + 1}:${
tlaLocation.character + 1
}). ` +
`Please re-organize your code to not use a top level await or only distribute an ESM module by setting the 'cjs' build option to false.`,
);
throw new Error(
"Build failed due to top level await when creating CommonJS package.",
);
}
}
if (!options.skipSourceOutput) {
writeFile(outputFilePath, outputFileText);
}
}
let program = project.createProgram();
if (options.typeCheck) {
log("Type checking...");
const diagnostics = ts.getPreEmitDiagnostics(program);
if (diagnostics.length > 0) {
outputDiagnostics(diagnostics);
throw new Error(`Had ${diagnostics.length} diagnostics.`);
}
}
// emit only the .d.ts files
if (options.declaration) {
log("Emitting declaration files...");
emit({ onlyDtsFiles: true });
}
// emit the esm files
log("Emitting ESM package...");
project.compilerOptions.set({
declaration: false,
outDir: esmOutDir,
});
program = project.createProgram();
emit();
writeFile(
path.join(esmOutDir, "package.json"),
`{\n "type": "module"\n}\n`,
);
// emit the umd files
if (options.cjs) {
log("Emitting CommonJS package...");
project.compilerOptions.set({
declaration: false,
esModuleInterop: true,
outDir: umdOutDir,
module: ts.ModuleKind.UMD,
});
program = project.createProgram();
emit({
transformers: {
before: [compilerTransforms.transformImportMeta],
},
});
writeFile(
path.join(umdOutDir, "package.json"),
`{\n "type": "commonjs"\n}\n`,
);
}
// ensure this is done before running tests
await npmInstallPromise;
if (options.test) {
log("Running tests...");
createTestLauncherScript();
await runNpmCommand({
bin: packageManager,
args: ["run", "test"],
cwd: options.outDir,
});
}
log("Complete!");
function emit(
opts?: { onlyDtsFiles?: boolean; transformers?: ts.CustomTransformers },
) {
const emitResult = program.emit(
undefined,
(filePath, data, writeByteOrderMark) => {
if (writeByteOrderMark) {
data = "\uFEFF" + data;
}
writeFile(filePath, data);
},
undefined,
opts?.onlyDtsFiles,
opts?.transformers,
);
if (emitResult.diagnostics.length > 0) {
outputDiagnostics(emitResult.diagnostics);
throw new Error(`Had ${emitResult.diagnostics.length} emit diagnostics.`);
}
}
function createPackageJson() {
const packageJsonObj = getPackageJson({
entryPoints,
transformOutput,
package: options.package,
testEnabled: options.test,
includeCjs: options.cjs,
includeDeclarations: options.declaration,
includeTsLib: options.compilerOptions?.importHelpers,
});
writeFile(
path.join(options.outDir, "package.json"),
JSON.stringify(packageJsonObj, undefined, 2),
);
}
function createNpmIgnore() {
const fileText = getNpmIgnoreText({
sourceMap: options.compilerOptions?.sourceMap,
inlineSources: options.compilerOptions?.inlineSources,
testFiles: transformOutput.test.files,
});
writeFile(
path.join(options.outDir, ".npmignore"),
fileText,
);
}
async function transformEntryPoints(): Promise<TransformOutput> {
const { shims, testShims } = shimOptionsToTransformShims(options.shims);
return transform({
entryPoints: entryPoints.map((e) => e.path),
testEntryPoints: options.test
? await glob({
pattern: getTestPattern(),
rootDir: options.rootTestDir ?? Deno.cwd(),
excludeDirs: [options.outDir],
})
: [],
shims,
testShims,
mappings: options.mappings,
redirects: options.redirects,
});
}
function log(message: string) {
console.log(`[dnt] ${message}`);
}
function warn(message: string) {
console.warn(colors.yellow(`[dnt] ${message}`));
}
function createTestLauncherScript() {
const denoTestShimPackage = getDependencyByName("@deno/shim-deno-test") ??
getDependencyByName("@deno/shim-deno");
writeFile(
path.join(options.outDir, "test_runner.js"),
transformCodeToTarget(
getTestRunnerCode({
denoTestShimPackageName: denoTestShimPackage == null
? undefined
: denoTestShimPackage.name === "@deno/shim-deno"
? "@deno/shim-deno/test-internals"
: denoTestShimPackage.name,
testEntryPoints: transformOutput.test.entryPoints,
includeCjs: options.cjs,
}),
compilerScriptTarget,
),
);
function getDependencyByName(name: string) {
return transformOutput.test.dependencies.find((d) => d.name === name) ??
transformOutput.main.dependencies.find((d) => d.name === name);
}
}
function getTestPattern() {
// * named `test.{ts, tsx, js, mjs, jsx}`,
// * or ending with `.test.{ts, tsx, js, mjs, jsx}`,
// * or ending with `_test.{ts, tsx, js, mjs, jsx}`
return options.testPattern ??
"**/{test.{ts,tsx,js,mjs,jsx},*.test.{ts,tsx,js,mjs,jsx},*_test.{ts,tsx,js,mjs,jsx}}";
}
}