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
When using the following configuration:
"build": { "executor": "@nrwl/web:rollup", "outputs": [ "{options.outputPath}" ], "options": { "outputPath": "dist/packages/falso", "tsConfig": "packages/falso/tsconfig.lib.json", "project": "packages/falso/package.json", "entryFile": "packages/falso/src/index.ts", "format": [ "esm", "cjs" ] } },
The build output in package.json is:
package.json
"main": "./index.umd.js", "module": "./index.esm.js", "typings": "./index.d.ts"
"main": "./index.cjs.js", "module": "./index.esm.js", "typings": "./index.d.ts"
The text was updated successfully, but these errors were encountered:
The issue is here. It doesn't take into account the provided format.
format
Sorry, something went wrong.
main
module
This is fixed in latest Nx version (14.1.9)
This issue has been closed for more than 30 days. If this issue is still occuring, please open a new issue with more recent context.
Successfully merging a pull request may close this issue.
Current Behavior
When using the following configuration:
The build output in
package.json
is:Expected Behavior
The text was updated successfully, but these errors were encountered: