@storm-software/workspace-tools 1.179.6 → 1.179.7
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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/index.js +4 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +4 -5
package/package.json
CHANGED
|
@@ -409659,7 +409659,10 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
409659
409659
|
}),
|
|
409660
409660
|
image(),
|
|
409661
409661
|
json(),
|
|
409662
|
-
|
|
409662
|
+
nodeResolve({
|
|
409663
|
+
preferBuiltins: true,
|
|
409664
|
+
extensions: fileExtensions
|
|
409665
|
+
}),
|
|
409663
409666
|
require_rollup_plugin_typescript2_cjs()({
|
|
409664
409667
|
check: !options.skipTypeCheck,
|
|
409665
409668
|
tsconfig: options.tsConfig,
|
|
@@ -409687,10 +409690,6 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
409687
409690
|
// }
|
|
409688
409691
|
// }
|
|
409689
409692
|
// }),
|
|
409690
|
-
nodeResolve({
|
|
409691
|
-
preferBuiltins: true,
|
|
409692
|
-
extensions: fileExtensions
|
|
409693
|
-
}),
|
|
409694
409693
|
getBabelInputPlugin({
|
|
409695
409694
|
// Lets `@nx/js/babel` preset know that we are packaging.
|
|
409696
409695
|
caller: {
|