nx 20.2.0-beta.2 → 20.2.0-beta.4

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/.eslintrc.json CHANGED
@@ -130,7 +130,9 @@
130
130
  "@nx/nx-linux-arm-gnueabihf",
131
131
  "@nx/nx-win32-arm64-msvc",
132
132
  "@nx/nx-freebsd-x64",
133
- "@nx/powerpack-license"
133
+ "@nx/powerpack-license",
134
+ // Powerpack plugin conditionally available dynamically at runtime
135
+ "@nx/powerpack-conformance"
134
136
  ]
135
137
  }
136
138
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "20.2.0-beta.2",
3
+ "version": "20.2.0-beta.4",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -80,16 +80,16 @@
80
80
  }
81
81
  },
82
82
  "optionalDependencies": {
83
- "@nx/nx-darwin-x64": "20.2.0-beta.2",
84
- "@nx/nx-darwin-arm64": "20.2.0-beta.2",
85
- "@nx/nx-linux-x64-gnu": "20.2.0-beta.2",
86
- "@nx/nx-linux-x64-musl": "20.2.0-beta.2",
87
- "@nx/nx-win32-x64-msvc": "20.2.0-beta.2",
88
- "@nx/nx-linux-arm64-gnu": "20.2.0-beta.2",
89
- "@nx/nx-linux-arm64-musl": "20.2.0-beta.2",
90
- "@nx/nx-linux-arm-gnueabihf": "20.2.0-beta.2",
91
- "@nx/nx-win32-arm64-msvc": "20.2.0-beta.2",
92
- "@nx/nx-freebsd-x64": "20.2.0-beta.2"
83
+ "@nx/nx-darwin-x64": "20.2.0-beta.4",
84
+ "@nx/nx-darwin-arm64": "20.2.0-beta.4",
85
+ "@nx/nx-linux-x64-gnu": "20.2.0-beta.4",
86
+ "@nx/nx-linux-x64-musl": "20.2.0-beta.4",
87
+ "@nx/nx-win32-x64-msvc": "20.2.0-beta.4",
88
+ "@nx/nx-linux-arm64-gnu": "20.2.0-beta.4",
89
+ "@nx/nx-linux-arm64-musl": "20.2.0-beta.4",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.2.0-beta.4",
91
+ "@nx/nx-win32-arm64-msvc": "20.2.0-beta.4",
92
+ "@nx/nx-freebsd-x64": "20.2.0-beta.4"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
@@ -261,7 +261,7 @@ class DefaultChangelogRenderer {
261
261
  ...e[1],
262
262
  }));
263
263
  if (authors.length > 0) {
264
- markdownLines.push('', '### ' + '❤️ Thank You', '', ...authors
264
+ markdownLines.push('', '### ' + '❤️ Thank You', '', ...authors
265
265
  .sort((a, b) => a.name.localeCompare(b.name))
266
266
  .map((i) => {
267
267
  const github = i.github ? ` @${i.github}` : '';
@@ -115,6 +115,7 @@ const npmPackageToPluginMap = {
115
115
  vite: '@nx/vite',
116
116
  vitest: '@nx/vite',
117
117
  webpack: '@nx/webpack',
118
+ '@rspack/core': '@nx/rspack',
118
119
  rollup: '@nx/rollup',
119
120
  // Testing tools
120
121
  jest: '@nx/jest',
@@ -65,7 +65,9 @@ async function reportHandler() {
65
65
  bodyLines.push('');
66
66
  bodyLines.push(LINE_SEPARATOR);
67
67
  bodyLines.push(chalk.green('Nx Powerpack'));
68
- bodyLines.push(`Licensed to ${powerpackLicense.organizationName} for ${powerpackLicense.seatCount} user${powerpackLicense.seatCount > 1 ? 's' : ''} in ${powerpackLicense.workspaceCount} workspace${powerpackLicense.workspaceCount > 1 ? 's' : ''} until ${new Date(powerpackLicense.expiresAt * 1000).toLocaleDateString()}`);
68
+ bodyLines.push(`Licensed to ${powerpackLicense.organizationName} for ${powerpackLicense.seatCount} user${powerpackLicense.seatCount > 1 ? 's' : ''} in ${powerpackLicense.workspaceCount === 9999
69
+ ? 'an unlimited number of'
70
+ : powerpackLicense.workspaceCount} workspace${powerpackLicense.workspaceCount > 1 ? 's' : ''} until ${new Date((powerpackLicense.realExpiresAt ?? powerpackLicense.expiresAt) * 1000).toLocaleDateString()}`);
69
71
  bodyLines.push('');
70
72
  padding =
71
73
  Math.max(...powerpackPlugins.map((powerpackPlugin) => powerpackPlugin.name.length)) + 1;