-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsdown.config.ts
More file actions
89 lines (88 loc) · 1.96 KB
/
tsdown.config.ts
File metadata and controls
89 lines (88 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { defineConfig } from 'tsdown'
import packageJson from './package.json' with { type: 'json' }
export default defineConfig({
platform: 'node',
shims: true,
entry: ['src/index.ts'],
deps: {
alwaysBundle: [...Object.keys(packageJson.dependencies)],
onlyBundle: [
'@actions/core',
'@actions/exec',
'@actions/github',
'@actions/http-client',
'@actions/io',
'@manypkg/find-root',
'@manypkg/get-packages',
'@manypkg/tools',
'@octokit/auth-token',
'@octokit/core',
'@octokit/endpoint',
'@octokit/graphql',
'@octokit/plugin-paginate-rest',
'@octokit/plugin-rest-endpoint-methods',
'@octokit/request',
'@octokit/request-error',
'agent-base',
'asynckit',
'bignumber.js',
'before-after-hook',
'call-bind-apply-helpers',
'camelcase',
'combined-stream',
'debug',
'delayed-stream',
'dunder-proto',
'es-define-property',
'es-errors',
'es-object-atoms',
'es-set-tostringtag',
'fast-content-type-parse',
'fdir',
'form-data',
'function-bind',
'get-intrinsic',
'get-proto',
'get-stream',
'gopd',
'has-symbols',
'has-tostringtag',
'hasown',
'https-proxy-agent',
'is-stream',
'jju',
'json-bigint',
'js-yaml',
'marked',
'math-intrinsics',
'mime-db',
'mime-types',
'ms',
'node-fetch',
'picomatch',
'tinyglobby',
'is-stream',
'jju',
'json-bigint',
'js-yaml',
'marked',
'math-intrinsics',
'mime-db',
'mime-types',
'ms',
'node-fetch',
'picomatch',
'tinyglobby',
'tr46',
'tencentcloud-sdk-nodejs-common',
'tencentcloud-sdk-nodejs-hunyuan',
'tslib',
'tunnel',
'undici',
'universal-user-agent',
'uuid',
'webidl-conversions',
'whatwg-url',
],
},
})