danny-avila--librechat
e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
37 行
1.3 KiB
JavaScript
37 行
1.3 KiB
JavaScript
import path from 'node:path';
|
|
import { createRequire } from 'node:module';
|
|
import replace from '@rollup/plugin-replace';
|
|
import { defineConfig } from 'tsdown';
|
|
|
|
const require = createRequire(import.meta.url);
|
|
const rootPkg = require('../../package.json');
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts', 'src/react-query/index.ts'],
|
|
format: ['cjs', 'esm'],
|
|
platform: 'neutral',
|
|
// Declarations are emitted separately by `tsc -p tsconfig.build.json` (see the
|
|
// `build` script). This package's zod schemas aren't `isolatedDeclarations`-clean,
|
|
// so oxc/bundled-dts isn't viable; plain tsc keeps the rich types and is the only
|
|
// slow step (~2s), while rolldown bundles the JS in ~0.2s.
|
|
dts: false,
|
|
outDir: 'dist',
|
|
sourcemap: true,
|
|
deps: {
|
|
// Match the prior Rollup build: bundle nothing third-party. Externalize every
|
|
// bare import (deps, peers, and node built-ins like `crypto`); bundle only the
|
|
// package's own relative/aliased modules.
|
|
neverBundle: (id) => !id.startsWith('.') && !path.isAbsolute(id) && !id.startsWith('src/'),
|
|
onlyBundle: false,
|
|
},
|
|
plugins: [
|
|
replace({
|
|
preventAssignment: true,
|
|
values: {
|
|
__IS_DEV__: process.env.NODE_ENV === 'development',
|
|
__LIBRECHAT_VERSION__: rootPkg.version,
|
|
},
|
|
}),
|
|
],
|
|
});
|