-
Notifications
You must be signed in to change notification settings - Fork 507
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
Migrate Rollup TS Plugin to '@wessberg/rollup-plugin-ts' to support async rollup plugins #200
Comments
Thanks for the write up. Let’s make the change
…--
Jared
________________________________
From: Michael Edelman <[email protected]>
Sent: Sunday, September 8, 2019 4:26 AM
To: palmerhq/tsdx
Cc: Subscribed
Subject: [palmerhq/tsdx] Migrate Rollup TS Plugin to '@wessberg/rollup-plugin-ts' (#200)
Current Behavior
TSDX uses rollup-plugin-typescript2 to compile and check TypeScript files. Due to certain anomalies<ezolenko/rollup-plugin-typescript2#105> specific to this plugin, tsdx users are unable, inter alia, to use additional rollup plugins that contain async/await syntax (e.g., rollup-plugin-visualizer<https://github.com/btd/rollup-plugin-visualizer>) without a workaround. See ezolenko/rollup-plugin-typescript2#105<ezolenko/rollup-plugin-typescript2#105>; see also #183 (comment)<#183 (comment)>.
Unfortunately, the workaround, aptly titled, objectHashIgnoreUnknownHack, 'can potentially make cache stale,' due to the fact that rollup-plugin-typescript2 uses a hash of the entire rollup configuration to facilitate cache invalidation. See ezolenko/rollup-plugin-typescript2#105 (comment)<ezolenko/rollup-plugin-typescript2#105 (comment)>. As a workaround for the workaround, users are encouraged to bypass the cache completely by setting clean to true in their rollup configurations. See ezolenko/rollup-plugin-typescript2#105 (comment)<ezolenko/rollup-plugin-typescript2#105 (comment)>.
The plugin uses rollup config as part of cache key. object-hash is used to generate a hash, but it can't hash certain elements at the moment. Setting this option to true will make object-hash ignore unknowns, at the cost of not invalidating the cache if ignored elements are changed. Only enable this if you need it (Error: Unknown object type "asyncfunction" for example) and make sure to run with clean: true once in a while and definitely before a release. (See #105<#105>)
Desired Behavior
As a tsdx user, I should be able to extend tsdx's rollup configuration to include additional plugins that use async/await syntax without a workaround and, especially, without having to worry whether my cache is stale.
Suggested Solution
Replace rollup-plugin-typescript2 with rollup-plugin-ts<https://github.com/wessberg/rollup-plugin-ts>.
Who does this impact? Who is this for?
While #183<#183> added support for extending tsdx's rollup configuration, making it easy to add additional rollup-plugins, there is no easy way to swap out tsdx's default plugin choices. See, e.g., infra, Alternative Solutions. Thus, tsdx users are, more or less, blocked from using any rollup plugin that contains async/await code. As the async/await syntax continues to gain popularity, it is likely that this issue will affect more and more tsdx users.
Describe alternatives you've considered
With #183<#183>, tsdx users can hack tsdx's default plugin choices (example below) to either (1) to modify the rollup-plugin-typescript2 configuration as described above, or (2) swap out the plugin for rollup-plugin-ts; however, neither approach is ideal.
const ts = require("@wessberg/rollup-plugin-ts");
module.exports = {
rollup(config, options) {
config.plugins = config.plugins.map(plugin => {
if (plugin && plugin.name === "rpt2") {
return ts({
tsconfig: tsconfig => ({
...tsconfig,
target: "esnext",
sourceMap: true,
declaration: true,
jsx: "react"
}),
transpiler: "babel"
});
}
return plugin;
});
...
return config;
}
};
Additional context
The rollup-plugin-typescript2 plugin appears to have several additional bugs that may cause tsdx users pain. For example, to enable code splitting, users must also employ an additional workaround, setting rollupCommonJSResolveHack to true. But see:
On windows typescript resolver favors POSIX path, while commonjs plugin (and maybe others?) uses native path as module id. This can result in namedExports being ignored if rollup happened to use typescript's resolution. Set to true to pass resolved module path through resolve() to match up with rollup-plugin-commonjs. rollup-plugin-commonjs fixed this in 10.1.0, so projects using this option who update to new version will be broken again. This also works around the similar bug affecting code splitting (see rollup/issues/3094).
* https://github.com/ezolenko/rollup-plugin-typescript2
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#200>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AA67IG3H2RTP3QMONDSHENTQIRPGZANCNFSM4IUR6GMQ>.
|
Sounds good. I’ll submit a PR by EOW.
Get Outlook for iOS<https://aka.ms/o0ukef>
…________________________________
From: Jared Palmer <[email protected]>
Sent: Sunday, September 8, 2019 3:12:37 AM
To: palmerhq/tsdx <[email protected]>
Cc: Michael Edelman <[email protected]>; Author <[email protected]>
Subject: Re: [palmerhq/tsdx] Migrate Rollup TS Plugin to '@wessberg/rollup-plugin-ts' (#200)
Thanks for the write up. Let’s make the change
--
Jared
________________________________
From: Michael Edelman <[email protected]>
Sent: Sunday, September 8, 2019 4:26 AM
To: palmerhq/tsdx
Cc: Subscribed
Subject: [palmerhq/tsdx] Migrate Rollup TS Plugin to '@wessberg/rollup-plugin-ts' (#200)
Current Behavior
TSDX uses rollup-plugin-typescript2 to compile and check TypeScript files. Due to certain anomalies<ezolenko/rollup-plugin-typescript2#105> specific to this plugin, tsdx users are unable, inter alia, to use additional rollup plugins that contain async/await syntax (e.g., rollup-plugin-visualizer<https://github.com/btd/rollup-plugin-visualizer>) without a workaround. See ezolenko/rollup-plugin-typescript2#105<ezolenko/rollup-plugin-typescript2#105>; see also #183 (comment)<#183 (comment)>.
Unfortunately, the workaround, aptly titled, objectHashIgnoreUnknownHack, 'can potentially make cache stale,' due to the fact that rollup-plugin-typescript2 uses a hash of the entire rollup configuration to facilitate cache invalidation. See ezolenko/rollup-plugin-typescript2#105 (comment)<ezolenko/rollup-plugin-typescript2#105 (comment)>. As a workaround for the workaround, users are encouraged to bypass the cache completely by setting clean to true in their rollup configurations. See ezolenko/rollup-plugin-typescript2#105 (comment)<ezolenko/rollup-plugin-typescript2#105 (comment)>.
The plugin uses rollup config as part of cache key. object-hash is used to generate a hash, but it can't hash certain elements at the moment. Setting this option to true will make object-hash ignore unknowns, at the cost of not invalidating the cache if ignored elements are changed. Only enable this if you need it (Error: Unknown object type "asyncfunction" for example) and make sure to run with clean: true once in a while and definitely before a release. (See #105<#105>)
Desired Behavior
As a tsdx user, I should be able to extend tsdx's rollup configuration to include additional plugins that use async/await syntax without a workaround and, especially, without having to worry whether my cache is stale.
Suggested Solution
Replace rollup-plugin-typescript2 with rollup-plugin-ts<https://github.com/wessberg/rollup-plugin-ts>.
Who does this impact? Who is this for?
While #183<#183> added support for extending tsdx's rollup configuration, making it easy to add additional rollup-plugins, there is no easy way to swap out tsdx's default plugin choices. See, e.g., infra, Alternative Solutions. Thus, tsdx users are, more or less, blocked from using any rollup plugin that contains async/await code. As the async/await syntax continues to gain popularity, it is likely that this issue will affect more and more tsdx users.
Describe alternatives you've considered
With #183<#183>, tsdx users can hack tsdx's default plugin choices (example below) to either (1) to modify the rollup-plugin-typescript2 configuration as described above, or (2) swap out the plugin for rollup-plugin-ts; however, neither approach is ideal.
const ts = require("@wessberg/rollup-plugin-ts");
module.exports = {
rollup(config, options) {
config.plugins = config.plugins.map(plugin => {
if (plugin && plugin.name === "rpt2") {
return ts({
tsconfig: tsconfig => ({
...tsconfig,
target: "esnext",
sourceMap: true,
declaration: true,
jsx: "react"
}),
transpiler: "babel"
});
}
return plugin;
});
...
return config;
}
};
Additional context
The rollup-plugin-typescript2 plugin appears to have several additional bugs that may cause tsdx users pain. For example, to enable code splitting, users must also employ an additional workaround, setting rollupCommonJSResolveHack to true. But see:
On windows typescript resolver favors POSIX path, while commonjs plugin (and maybe others?) uses native path as module id. This can result in namedExports being ignored if rollup happened to use typescript's resolution. Set to true to pass resolved module path through resolve() to match up with rollup-plugin-commonjs. rollup-plugin-commonjs fixed this in 10.1.0, so projects using this option who update to new version will be broken again. This also works around the similar bug affecting code splitting (see rollup/issues/3094).
* https://github.com/ezolenko/rollup-plugin-typescript2
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#200>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AA67IG3H2RTP3QMONDSHENTQIRPGZANCNFSM4IUR6GMQ>.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#200>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ADQ3VLK6HYVZUKX36O7L7A3QISQWLANCNFSM4IUR6GMQ>.
|
This switch will be amazing! :) I'm playing around in the last couple of days and the @wessberg plugin works beautifully. One huge benefit is that it bundles and tree-shakes the declarations files - no such thing possible until recently. And frees the road to use Babel for the rest. Which isn't exactly true, since when type-check I was working on a Rollup config that using it too. Some working example (with monorepo support) can be seen here (and the whole monorepo uses it too) https://github.com/tunnckoCore/configs/tree/master/packages/rollup-config. Usage is simple as const config = require('@tunnckocore/rollup-config/config');
module.exports = config({ prod: true, monorepo: true }).concat(
config({ prod: false, monorepo: true })
);
// generating cjs, esm, umd,
// and index.d.ts, index.min.js, index.js.map files for each format I'll check the #208 |
Amazing! I’ve submitted a PR (#208) but having a hard time getting last two tests to pass. Would you be able to take a look and offer any insight you might have. Sounds like you’re way more versed than I am :-)
Get Outlook for iOS<https://aka.ms/o0ukef>
…________________________________
From: Charlike Mike Reagent <[email protected]>
Sent: Sunday, September 15, 2019 10:58:16 PM
To: palmerhq/tsdx <[email protected]>
Cc: Michael Edelman <[email protected]>; Author <[email protected]>
Subject: Re: [palmerhq/tsdx] Migrate Rollup TS Plugin to '@wessberg/rollup-plugin-ts' (#200)
This switch will be amazing! :) I'm playing around in the last couple of days and the @wessberg<https://github.com/wessberg> plugin works beautifully. One huge benefit is that it bundles and tree-shakes the declarations files - no such thing possible until recently. And frees the road to use Babel for the rest. Which isn't exactly true, since when type-check tsc (and in your editor) will error. But at least that's until TypeScript 3.7.
I was working on a Rollup config that using it too. Some working example (with monorepo support) can be seen here (and the whole monorepo uses it too) https://github.com/tunnckoCore/configs/tree/master/packages/rollup-config. Usage is simple as
const config = require('@tunnckocore/rollup-config/config');
module.exports = config({ prod: true, monorepo: true }).concat(config({ prod: false, monorepo: true }));
// generating cjs, esm, umd, index.d.ts for each, and .map files
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#200>, or mute the thread<https://github.com/notifications/unsubscribe-auth/ADQ3VLLB4V2WURZPWCAX5VTQJ3Y4RANCNFSM4IUR6GMQ>.
|
Current Behavior
TSDX uses
rollup-plugin-typescript2
to compile and check TypeScript files. Due to certain anomalies specific to this plugin, tsdx users are unable, inter alia, to use additional rollup plugins that contain async/await syntax (e.g.,rollup-plugin-visualizer
) without a workaround. See ezolenko/rollup-plugin-typescript2#105; see also #183 (comment).Unfortunately, the workaround, aptly titled,
objectHashIgnoreUnknownHack,
'can potentially make cache stale,' due to the fact thatrollup-plugin-typescript2
uses a hash of the entire rollup configuration to facilitate cache invalidation. See ezolenko/rollup-plugin-typescript2#105 (comment). As a workaround for the workaround, users are encouraged to bypass the cache completely by settingclean
totrue
in their rollup configurations. See ezolenko/rollup-plugin-typescript2#105 (comment).Desired Behavior
As a tsdx user, I should be able to extend tsdx's rollup configuration to include additional plugins that use async/await syntax without a workaround and, especially, without having to worry whether my cache is stale.
Suggested Solution
Replace
rollup-plugin-typescript2
withrollup-plugin-ts
.Who does this impact? Who is this for?
While #183 added support for extending tsdx's rollup configuration, making it easy to add additional rollup-plugins, there is no easy way to swap out tsdx's default plugin choices. See, e.g., infra, Alternative Solutions. Thus, tsdx users are, more or less, blocked from using any rollup plugin that contains
async/await
code. As theasync/await
syntax continues to gain popularity, it is likely that this issue will affect more and more tsdx users.Describe alternatives you've considered
With #183, tsdx users can hack tsdx's default plugin choices (example below) to either (1) to modify the
rollup-plugin-typescript2
configuration as described above, or (2) swap out the plugin forrollup-plugin-ts
; however, neither approach is ideal.For diagnostic purposes, a working example using the above swap-out hack can be found here: https://github.com/medelman17/tsdx-monorepo-template
Additional context
The
rollup-plugin-typescript2
plugin appears to have several additional bugs that may cause tsdx users pain. For example, to enable code splitting, users must also employ an additional workaround, settingrollupCommonJSResolveHack
totrue
. But see:The text was updated successfully, but these errors were encountered: