Skip to content

Commit

Permalink
fix(js): use export type for exports from schema.d.ts files (#17392)
Browse files Browse the repository at this point in the history
Co-authored-by: Yuri Pieters <yuri.pieters@anaplan.com>
  • Loading branch information
MageJohn and Yuri Pieters committed Jun 6, 2023
1 parent f1db759 commit d26d0f4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion packages/esbuild/index.ts
@@ -1,3 +1,6 @@
export * from './src/executors/esbuild/schema';
export type {
EsBuildExecutorOptions,
NormalizedEsBuildExecutorOptions,
} from './src/executors/esbuild/schema';
export * from './src/executors/esbuild/esbuild.impl';
export * from './src/utils/versions';
6 changes: 5 additions & 1 deletion packages/rollup/index.ts
@@ -1,4 +1,8 @@
export * from './src/generators/init/init';
export * from './src/generators/rollup-project/rollup-project';
export * from './src/executors/rollup/schema';
export type {
AssetGlobPattern,
Globals,
RollupExecutorOptions,
} from './src/executors/rollup/schema';
export * from './src/executors/rollup/rollup.impl';

1 comment on commit d26d0f4

@vercel
Copy link

@vercel vercel bot commented on d26d0f4 Jun 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-git-master-nrwl.vercel.app
nx-dev-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.