@nx/rollup 21.0.0-canary.20250430-07b881d → 21.0.0-rc.0
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": "21.0.0-
|
|
3
|
+
"version": "21.0.0-rc.0",
|
|
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": "21.0.0-
|
|
33
|
-
"@nx/js": "21.0.0-
|
|
32
|
+
"@nx/devkit": "21.0.0-rc.0",
|
|
33
|
+
"@nx/js": "21.0.0-rc.0",
|
|
34
34
|
"@rollup/plugin-babel": "^6.0.4",
|
|
35
35
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
36
36
|
"@rollup/plugin-image": "^3.0.3",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
39
39
|
"@rollup/plugin-typescript": "^12.1.0",
|
|
40
40
|
"autoprefixer": "^10.4.9",
|
|
41
|
-
"minimatch": "9.0.3",
|
|
42
41
|
"picocolors": "^1.1.0",
|
|
42
|
+
"picomatch": "4.0.2",
|
|
43
43
|
"postcss": "^8.4.38",
|
|
44
44
|
"rollup": "^4.14.0",
|
|
45
45
|
"rollup-plugin-copy": "^3.5.0",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.addPluginRegistrations = addPluginRegistrations;
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
|
-
const
|
|
5
|
+
const picomatch = require("picomatch");
|
|
6
6
|
async function addPluginRegistrations(tree, projectTargets, projects, pluginPath) {
|
|
7
7
|
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
8
8
|
for (const [project, options] of projectTargets.entries()) {
|
|
@@ -20,7 +20,7 @@ async function addPluginRegistrations(tree, projectTargets, projects, pluginPath
|
|
|
20
20
|
nxJson.plugins.push(plugin);
|
|
21
21
|
}
|
|
22
22
|
else if (existingPlugin.include) {
|
|
23
|
-
if (!existingPlugin.include.some((include) => (
|
|
23
|
+
if (!existingPlugin.include.some((include) => picomatch(include)(projectIncludeGlob))) {
|
|
24
24
|
existingPlugin.include.push(projectIncludeGlob);
|
|
25
25
|
}
|
|
26
26
|
}
|