Skip to content

Commit cd42fc9

Browse files
committed
[hygiene] Hack for automerge
1 parent 5349367 commit cd42fc9

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
"feychenie",
5858
"fostertheweb",
5959
"Friggeri",
60+
"fullfat",
6061
"Giulio",
6162
"granularities",
6263
"gulpfile",

test/jest/resolver.cjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,13 @@ module.exports = (path, options) =>
2424

2525
return packageJson;
2626
},
27+
pathFilter: (packageJson, _, relativePath) => {
28+
if (
29+
packageJson.name == '@automerge/automerge' &&
30+
relativePath == 'dist/cjs/slim_next.cjs'
31+
) {
32+
return 'dist/cjs/fullfat_base64.cjs';
33+
}
34+
return relativePath;
35+
},
2736
});

0 commit comments

Comments
 (0)