ctix icon indicating copy to clipboard operation
ctix copied to clipboard

CLI to generate barrel file for webpack, rollup entrypoint

Results 5 ctix issues
Sort by recently updated
recently updated
newest added

In my StackNetwork.ts, I have this code: ``` interface Options { stackName: string; config: NetworkConfig; } export { Options as StackNetworkOptions }; ``` In my StackService.ts, I have this code:...

enhancement

Hello! Recently, ts 5.5 was announced in beta with new feature https://devblogs.microsoft.com/typescript/announcing-typescript-5-5-beta/#the-configdir-template-variable-for-configuration-files This lets us share tsconfig across packages, and I wanted to use it for my monorepo, but ctix...

Example ``` vegas-MacBook-Pro:front-client sam$ npx ctix build --mode create -p .ctirc --start-from ./packages/vega-api/src ✔ /Users/sam/Documents/GitHub/front-client/tsconfig.json loading complete! ✔ analysis export statements completed! file [ ] 0% | 0/1326 vegas-MacBook-Pro:front-client sam$...

If i have a `parentfolder` of `childfolders` then it should create an` index.ts` file on that level? If this isn't the intended purpose of `skipEmptyDir` can we add one to...

I have this structure ``` src | - array-utils.ts ``` When I run `ctix build --mode create -p ./tsconfig.json --start-from ./src --overwrite true` with v2.7.1, it generates ``` export *...