We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c09faa commit 5cddfd9Copy full SHA for 5cddfd9
1 file changed
src/compiler/output-targets/output-custom.ts
@@ -4,6 +4,10 @@ import type * as d from '../../declarations';
4
import { generateDocData } from '../docs/generate-doc-data';
5
6
export const outputCustom = async (config: d.ValidatedConfig, compilerCtx: d.CompilerCtx, buildCtx: d.BuildCtx) => {
7
+ if (config._isTesting) {
8
+ return;
9
+ }
10
+
11
const task = config.watch ? 'always' : 'onBuildOnly';
12
const customOutputTargets = config.outputTargets
13
.filter(isOutputTargetCustom)
0 commit comments