@oclif/core 3.10.4 → 3.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/config/ts-node.js +1 -1
- package/package.json +1 -1
package/lib/config/ts-node.js
CHANGED
|
@@ -176,7 +176,7 @@ async function tsPath(root, orig, plugin) {
|
|
|
176
176
|
}
|
|
177
177
|
const isProduction = (0, util_1.isProd)();
|
|
178
178
|
if (cannotTranspileEsm(rootPlugin, plugin, isProduction)) {
|
|
179
|
-
debug(`Skipping ts-node registration for ${root} because it's an ESM module (NODE_ENV: ${process.env.NODE_ENV}, root plugin module type: ${rootPlugin?.moduleType})
|
|
179
|
+
debug(`Skipping ts-node registration for ${root} because it's an ESM module (NODE_ENV: ${process.env.NODE_ENV}, root plugin module type: ${rootPlugin?.moduleType})`);
|
|
180
180
|
if (plugin?.type === 'link')
|
|
181
181
|
(0, errors_1.memoizedWarn)(`${plugin?.name} is a linked ESM module and cannot be auto-transpiled. Existing compiled source will be used instead.`);
|
|
182
182
|
return orig;
|