@nx/rollup 22.3.0-beta.2 → 22.3.0-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/rollup",
3
- "version": "22.3.0-beta.2",
3
+ "version": "22.3.0-beta.3",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Rollup contains executors and generators that support building applications using Rollup.",
6
6
  "repository": {
@@ -29,8 +29,8 @@
29
29
  "migrations": "./migrations.json"
30
30
  },
31
31
  "dependencies": {
32
- "@nx/devkit": "22.3.0-beta.2",
33
- "@nx/js": "22.3.0-beta.2",
32
+ "@nx/devkit": "22.3.0-beta.3",
33
+ "@nx/js": "22.3.0-beta.3",
34
34
  "@rollup/plugin-babel": "^6.0.4",
35
35
  "@rollup/plugin-commonjs": "^25.0.7",
36
36
  "@rollup/plugin-image": "^3.0.3",
@@ -47,7 +47,7 @@
47
47
  "tslib": "^2.3.0"
48
48
  },
49
49
  "devDependencies": {
50
- "nx": "22.3.0-beta.2"
50
+ "nx": "22.3.0-beta.3"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
@@ -167,7 +167,7 @@ function addBuildTarget(tree, options, isTsSolutionSetup) {
167
167
  compiler: options.compiler ?? 'babel',
168
168
  project: `${project.root}/package.json`,
169
169
  external: options.external,
170
- format: options.format ?? isTsSolutionSetup ? ['esm'] : undefined,
170
+ format: (options.format ?? isTsSolutionSetup) ? ['esm'] : undefined,
171
171
  };
172
172
  if (options.rollupConfig) {
173
173
  buildOptions.rollupConfig = options.rollupConfig;