Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
7 changes: 4 additions & 3 deletions core/stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ const getAngularOutputTargets = () => {
return [
angularOutputTarget({
componentCorePackage,
directivesProxyFile: '../packages/angular/lazy/src/directives/proxies.ts',
directivesArrayFile: '../packages/angular/lazy/src/directives/proxies-list.ts',
directivesProxyFile: '../packages/angular/src/lazy/directives/proxies.ts',
directivesArrayFile: '../packages/angular/src/lazy/directives/proxies-list.ts',
excludeComponents,
outputType: 'component',
}),
angularOutputTarget({
componentCorePackage,
directivesProxyFile: '../packages/angular/standalone/src/directives/proxies.ts',
directivesProxyFile: '../packages/angular/src/standalone/directives/proxies.ts',
excludeComponents: [
...excludeComponents,
/**
Expand All @@ -64,6 +64,7 @@ const getAngularOutputTargets = () => {

],
outputType: 'standalone',
esModules: true,

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

This line is what makes Stencil emit the per-component files the rest of the PR hangs off, and there's nothing here saying so. Could you add a short comment? Someone tidying up this config later has no way to know it's load-bearing.

})
];
}
Expand Down
5 changes: 0 additions & 5 deletions packages/angular/common/ng-package.json

This file was deleted.

5 changes: 0 additions & 5 deletions packages/angular/lazy/ng-package.json

This file was deleted.

7 changes: 0 additions & 7 deletions packages/angular/ng-package.json

This file was deleted.

Loading
Loading