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 2375670 commit 162bb8cCopy full SHA for 162bb8c
dangerfile.js
@@ -35,7 +35,7 @@ const gzipSize = require('gzip-size');
35
const {readFileSync, statSync} = require('fs');
36
37
const BASE_DIR = 'base-build';
38
-const HEAD_DIR = 'build2';
+const HEAD_DIR = 'build';
39
40
const CRITICAL_THRESHOLD = 0.02;
41
const SIGNIFICANCE_THRESHOLD = 0.002;
@@ -127,7 +127,7 @@ function row(result) {
127
const resultsMap = new Map();
128
129
// Find all the head (current) artifacts paths.
130
- const headArtifactPaths = await glob('**/*.js', {cwd: 'build2'});
+ const headArtifactPaths = await glob('**/*.js', {cwd: 'build'});
131
for (const artifactPath of headArtifactPaths) {
132
try {
133
// This will throw if there's no matching base artifact
0 commit comments