-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
31 lines (29 loc) · 864 Bytes
/
index.ts
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
export * from './lib/commands.js';
export * from './lib/config.js';
export * from './lib/github.js';
export type {
ConfigFile,
ConfigFileSettings,
FileInputOutput,
FilesArray,
Lockfile,
Repository,
VendorConfig,
VendorDependencies,
VendorDependency,
VendorLock,
VendorLockFile,
VendorLockFiles,
VendorsOptions,
} from './lib/types.d.ts';
export * from './lib/utils.js';
// Soon™:
// > add a --config option to specify a folder where to look for the config file
// > complete release-notes.ts (add to https://github.com/Araxeus/vendorfiles-action)
// Later:
// > Nice documentation website
// > add spinners
// > add tests (also test package as imported + installed globally)
// > add support for glob patterns
// > "dry run" mode
// > add support for other providers like npm / git (gitlab, bitbucket, etc.)