nx 23.1.0-beta.1 → 23.1.0-beta.2

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.
@@ -80,9 +80,10 @@ function buildScopeRules(mode) {
80
80
  return [
81
81
  `<scope_rules>`,
82
82
  `- Apply only the changes the migration prompt asks for.`,
83
- `- Do not refactor, reformat, or update dependencies beyond what the migration prompt directs.`,
83
+ `- Do not refactor or update dependencies beyond what the migration prompt directs, and do not reformat files you did not change.`,
84
+ `- After applying your changes and before writing the handoff, format the files you created or modified so they match the workspace's style. If the workspace uses Prettier, run \`nx format:write\`, which formats your uncommitted changes; if it has no formatter configured, skip this.`,
84
85
  `- Do not modify files outside the workspace root.`,
85
- `- Do not run other \`nx\` commands that mutate workspace state (\`nx migrate\`, \`nx reset\`, \`nx run-many\`, generators, etc.). Read-only inspection (\`nx show\`, \`nx graph --file\`, reading files) is fine.`,
86
+ `- Do not run other \`nx\` commands that mutate workspace state (\`nx migrate\`, \`nx reset\`, \`nx run-many\`, generators, etc.), except \`nx format:write\` to format the files you changed. Read-only inspection (\`nx show\`, \`nx graph --file\`, reading files) is fine.`,
86
87
  `- If the migration instructions are unclear, internally inconsistent, or conflict with the current workspace state, ask the user for direction (see the handoff contract). Do not guess.`,
87
88
  `</scope_rules>`,
88
89
  ].join('\n');
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "23.1.0-beta.1",
3
+ "version": "23.1.0-beta.2",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
@@ -172,16 +172,16 @@
172
172
  }
173
173
  },
174
174
  "optionalDependencies": {
175
- "@nx/nx-darwin-arm64": "23.1.0-beta.1",
176
- "@nx/nx-darwin-x64": "23.1.0-beta.1",
177
- "@nx/nx-freebsd-x64": "23.1.0-beta.1",
178
- "@nx/nx-linux-arm-gnueabihf": "23.1.0-beta.1",
179
- "@nx/nx-linux-arm64-gnu": "23.1.0-beta.1",
180
- "@nx/nx-linux-arm64-musl": "23.1.0-beta.1",
181
- "@nx/nx-linux-x64-gnu": "23.1.0-beta.1",
182
- "@nx/nx-linux-x64-musl": "23.1.0-beta.1",
183
- "@nx/nx-win32-arm64-msvc": "23.1.0-beta.1",
184
- "@nx/nx-win32-x64-msvc": "23.1.0-beta.1"
175
+ "@nx/nx-darwin-arm64": "23.1.0-beta.2",
176
+ "@nx/nx-darwin-x64": "23.1.0-beta.2",
177
+ "@nx/nx-freebsd-x64": "23.1.0-beta.2",
178
+ "@nx/nx-linux-arm-gnueabihf": "23.1.0-beta.2",
179
+ "@nx/nx-linux-arm64-gnu": "23.1.0-beta.2",
180
+ "@nx/nx-linux-arm64-musl": "23.1.0-beta.2",
181
+ "@nx/nx-linux-x64-gnu": "23.1.0-beta.2",
182
+ "@nx/nx-linux-x64-musl": "23.1.0-beta.2",
183
+ "@nx/nx-win32-arm64-msvc": "23.1.0-beta.2",
184
+ "@nx/nx-win32-x64-msvc": "23.1.0-beta.2"
185
185
  },
186
186
  "nx-migrations": {
187
187
  "migrations": "./migrations.json",