We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
autoDefineCustomElements appears to be replaced by customElementsExportBehavior.
autoDefineCustomElements
customElementsExportBehavior
The error being:
Object literal may only specify known properties, and 'autoDefineCustomElements' does not exist in type 'OutputTargetDistCustomElements'.ts(2353)
To Reproduce Steps to reproduce the behavior:
npx create-nx-workspace@latest
nx g @nxext/stencil:lib core-components --buildable
stencil.config.ts
outputTargets.type: 'dist-custom-elements'
Expected behavior
Replace autoDefineCustomElements with customElementsExportBehavior: 'auto-define-custom-elements'
customElementsExportBehavior: 'auto-define-custom-elements'
Additional context
https://stenciljs.com/docs/custom-elements#customelementsexportbehavior
The text was updated successfully, but these errors were encountered:
nxext#1168 make-lib-buildable.ts replace addToOutputTargets dist-cust…
aa29d15
…om-elements autoDefineCustomElements true with customElementsExportBehavior 'auto-define-custom-elements', including tests (https://stenciljs.com/docs/custom-elements#customelementsexportbehavior)
nxext#1168 make-lib-buildable.ts format
3700ff9
Merge branch 'main' into bug/nxext#1168-make-lib-buildable-output-tar…
d5760e3
…get-dist-custom-elements-custom-elements-export-behavior
No branches or pull requests
Describe the bug
autoDefineCustomElements
appears to be replaced bycustomElementsExportBehavior
.The error being:
Object literal may only specify known properties, and 'autoDefineCustomElements' does not exist in type 'OutputTargetDistCustomElements'.ts(2353)
To Reproduce
Steps to reproduce the behavior:
npx create-nx-workspace@latest
nx g @nxext/stencil:lib core-components --buildable
stencil.config.ts
outputTargets.type: 'dist-custom-elements'
Expected behavior
Replace
autoDefineCustomElements
withcustomElementsExportBehavior: 'auto-define-custom-elements'
Additional context
https://stenciljs.com/docs/custom-elements#customelementsexportbehavior
The text was updated successfully, but these errors were encountered: