-
-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
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
[rollup-plugin-typescript] Re-enable declarationDir outside output file/dir #1772
Comments
Thanks for the issue. I'd like to point out that the reproduction you provided is not valid, and that's not entirely cool since we lay out exactly what is. On the subject matter itself, #1728 was a breaking change in how that worked and released as a major because of that. Moving forward, that's the intended behavior. What you're describing is the job of a post-processing task, which you elude to since you're using something like I see a few possible paths forward for this use case:
This repo is almost entirely dependent on community contributions, so please understand that this may be something you have to affect to see it realized. |
I'd like to suggest that #1728 has introduced behavior that may not be intended. In order to determine whether this is actually the case, the relationship between the "file" option in the OutputOptions type in the rollup.config.* file and the "outDir" and/or "declarationDir" property in compilerOptions of the tsconfig.json file needs to be clarified. I have not been able to find relevant documentation for the plugin. The fact that the rollup configuration supports multiple output files suggests to me that there is a conceptual issue with the relationship between these properties because the declarationDir property cannot simultaneously be inside many different directories implied by multiple OutputOptions. |
your argument may be valid, but in a specific context - yours, and a few others. the full request is it was written was to solve a problem that plagued the plug-in for a very long time and affected a lot of users. to that end, it's an effective solution. it's also a breaking change, which means you don't necessarily have to adopt the new contract. that said, I'm sure we would all be open to a new pull request which satisfied the problem as it was resolved by #1728, and allowing for the use case which you view as correct. if you'd like to discuss this until the cows come home, you're more than welcome to. but there's not going to be a one-size-fits-all solution unless the community steps up to make that happen. |
@shellscape is there an issue that explains what the original bug was that this change aimed to solve? There isn't one linked in the PR and it's not clear to me from the PR description what the bug was. You're saying it was such a widespread problem that affected so many people, but I've used the plugin for a long time and haven't experienced any issue this solves. So, it'd help to understand the larger context, in order to ensure any follow-up change is consistent with that goal. |
@marekdedic
Here are my settings:
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Node",
"esModuleInterop": true,
"importHelpers": true,
"strict": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"declaration": true,
"declarationDir": "dist/dts/",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*",
"test/**/*",
"rollup.config.ts"
],
"exclude": ["node_modules", "dist", "**/__snapshots__/**/*"]
}
import { RollupOptions } from 'rollup';
import typescript from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
import replace from '@rollup/plugin-replace';
import tsConfigPaths from 'rollup-plugin-tsconfig-paths';
import nodeResolve from '@rollup/plugin-node-resolve';
import { dts } from 'rollup-plugin-dts';
import postcss from 'rollup-plugin-postcss';
import del from 'rollup-plugin-delete';
import { createRequire } from 'module';
import path from 'path';
const pkg = createRequire(import.meta.url)('./package.json');
const isProduction = process.env.BUILD === 'production';
const sourceFile = 'src/index.ts';
const jsConfig: RollupOptions = {
input: sourceFile,
output: [
{
file: pkg.exports['.']['umd'],
format: 'umd',
name: 'checkBoxjs',
plugins: isProduction ? [terser()] : []
}
],
plugins: [
postcss({
extract: path.resolve(pkg.exports['./theme/checkBox.min.css']),
minimize: true,
sourceMap: false
}),
typescript(),
tsConfigPaths(),
nodeResolve(),
replace({
preventAssignment: true,
__version__: pkg.version
})
]
};
const esConfig: RollupOptions = {
input: sourceFile,
output: [
{
file: pkg.exports['.']['import'],
format: 'es'
}
],
plugins: [
postcss({
inject: false,
extract: false,
sourceMap: false
}),
typescript(),
tsConfigPaths(),
nodeResolve(),
replace({
preventAssignment: true,
__version__: pkg.version
})
]
};
const dtsConfig: RollupOptions = {
input: sourceFile,
output: {
file: pkg.exports['.']['types'],
format: 'es'
},
external: [/\.scss$/u],
plugins: [
tsConfigPaths(),
dts(),
del({ hook: 'buildEnd', targets: ['dist/dts'] })
]
};
export default [jsConfig, esConfig, dtsConfig];
{
//...
"type": "module",
"main": "dist/checkBox.min.js",
"module": "dist/checkBox.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"umd": "./dist/checkBox.min.js",
"import": "./dist/checkBox.esm.js",
"types": "./dist/index.d.ts"
},
"./theme/checkBox.min.css": "./dist/theme/checkBox.min.css"
},
//...
"devDependencies": {
"@carry0987/utils": "^3.7.8",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/preact": "^3.2.4",
"happy-dom": "^15.7.4",
"preact": "^10.24.3",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-tsconfig-paths": "^1.5.2",
"sass": "^1.80.1",
"tslib": "^2.8.0",
"vitest": "^2.1.3"
}
} Do you have any suggestions on how to resolve this issue or specific settings that work between these versions? Let me know if more details are needed for troubleshooting. Thank you! |
@carry0987 In the end, I chose the solution of building types in |
@michaelfaith I've add the example in my reply, let me know if more details are needed for troubleshooting. |
Thanks ! But I still want to use pure plugin |
@carry0987 Hmm, re-reading your first comment, it seems like you want to just do the thing I am doing before running api-extractor? |
Exactly, I just want to create |
@marekdedic @michaelfaith @shellscape Regarding my requirement, which is not to generate default declaration files but rather to produce a single @marekdedic I think you can just remove |
It seems to me that the implementation of #1783 is flawed. Versions <12 assumed that declarationDir was relative to outputDir. ( As of 12.1.0 (presumably for 12.0.0 through 12.1.0) the assumption is that declarationDir is relative to the root directory. ( #1783 changes this behaviour somehow that I don't fully understand (there's a rough explanation in a comment here); but it always seems to complain no matter what I do. |
That PR is solving the issue where |
To add to this, I actually played with the source code a bit to try and implement this and didn't find any reasonable way to go outside the rollup output dir in a rollup plugin. So my position now is that it'd be nice to be able to have a separate directory for declarations, but it's not possible (in a non-hacky way) - due to the limitations of rollup itself, not this plugin. #1728 solidifies this limitation and makes the behavior around this more visible and clear, but it didn't introduce this issue. |
@marekdedic from your experiments, do you think an upstream fix to rollup itself could feasibly resolve this limitation? |
@kahagerman No. From the point of view of rollup, the limitation is that any output files should be in the output directory. I think that that is a perfectly reasonable limitation when looking at it from rollup's point of view. |
Expected Behavior
Enable
declarationDir
to be outside the rollup output directory, much like it was possible in v11Actual Behavior
Since v12, I get:
Additional Information
The change I'd like to be reconsidered was introduced in #1728. However, emitting declarations to a different place from the build output can be really useful for things like post-processing with api-extractor - having the intermediary declarations produced by rollup be outside the final output dir makes it much easier to not accidentally include these files in the final build.
The text was updated successfully, but these errors were encountered: