Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
"github>cloudquery/.github//.github/renovate-go-default.json5",
"github>cloudquery/.github//.github/renovate-node-default.json5",
],
packageRules: [
{
// typescript-eslint has no release supporting TS 7 yet
// https://github.com/typescript-eslint/typescript-eslint/issues/10940
matchPackageNames: ["typescript"],
allowedVersions: "<7",
},
],
customManagers: [
{
// CLI version in README.md code example
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: Run Linter
run: pnpm run lint

- name: Typecheck
run: pnpm run typecheck

- name: Check Format
run: pnpm run format:ci

Expand Down
19 changes: 19 additions & 0 deletions build.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import * as esbuild from 'esbuild';

await esbuild.build({
entryPoints: ['src/main.ts'],
outfile: 'dist/index.js',
bundle: true,
platform: 'node',
target: 'node24',
format: 'esm',
minify: true,
keepNames: true,
// Bundled CommonJS dependencies still call require() at runtime
banner: {
js: [
"import { createRequire as __createRequire } from 'node:module';",
'const require = __createRequire(import.meta.url);',
].join('\n'),
},
});
Loading
Loading