@nx/devkit 21.0.0-beta.3 → 21.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/devkit",
3
- "version": "21.0.0-beta.3",
3
+ "version": "21.0.0-beta.5",
4
4
  "private": false,
5
5
  "description": "The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by leveraging the Nx Devkit](https://nx.dev/extending-nx/intro/getting-started) on our docs.",
6
6
  "repository": {
@@ -46,7 +46,7 @@ async function addE2eCiTargetDefaults(tree, e2ePlugin, buildTarget, pathToE2ECon
46
46
  const ciTargetName = typeof foundPluginForApplication === 'string'
47
47
  ? 'e2e-ci'
48
48
  : foundPluginForApplication.options?.ciTargetName ?? 'e2e-ci';
49
- const ciTargetNameGlob = `${ciTargetName}--**/*`;
49
+ const ciTargetNameGlob = `${ciTargetName}--**/**`;
50
50
  nxJson.targetDefaults ??= {};
51
51
  const e2eCiTargetDefaults = nxJson.targetDefaults[ciTargetNameGlob];
52
52
  if (!e2eCiTargetDefaults) {