Skip to content

Commit f4346ac

Browse files
authored
Fix/release-blockers (#537)
* chore(image-shrink): exclude tests for rollup build to prevent warnings * chore(image-shrink): fix vite/client import * chore: sync vite versions * chore(quality-insights): fix package.json types unnecessary field (got warn from vite) * chore: update lockfile * chore: fix typedoc builds * chore: bump shipjs version --------- Co-authored-by: nd0ut <[email protected]>
1 parent 4db270b commit f4346ac

File tree

12 files changed

+500
-1421
lines changed

12 files changed

+500
-1421
lines changed

createRollupConfig.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const RollbarFormat = Object.freeze({
1616
ESM: 'esm'
1717
})
1818

19-
export const createRollupConfig = ({ targetEnv, cwd }) =>
19+
export const createRollupConfig = ({ targetEnv, cwd, exclude }) =>
2020
[RollbarFormat.CJS, RollbarFormat.ESM].map((format) => {
2121
const extension = format === 'esm' ? 'mjs' : 'cjs'
2222
return {
@@ -45,7 +45,8 @@ export const createRollupConfig = ({ targetEnv, cwd }) =>
4545
nodeExternals({ exclude: /@uploadcare/ }),
4646
nodeResolve(),
4747
typescript({
48-
tsconfig: path.join(cwd, 'tsconfig.build.json')
48+
tsconfig: path.join(cwd, 'tsconfig.build.json'),
49+
exclude
4950
}),
5051
// @see https://github.com/arethetypeswrong/arethetypeswrong.github.io
5152
copy({

0 commit comments

Comments
 (0)