@tea-agent/loop-agent 0.27.1-beta.1 → 0.27.1-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.
@@ -1080,11 +1080,12 @@ function isFrontendLintVerifyCommand(command) {
1080
1080
  }
1081
1081
  function partitionFrontendStaticVerifyCommands(input) {
1082
1082
  const commands = input.commands ?? [];
1083
- const lintCommands = commands.filter(isFrontendLintVerifyCommand);
1083
+ // Frontend DAGs deliberately never generate lint verification. Existing
1084
+ // project lint debt is allowed to remain outside this workflow, and an
1085
+ // explicitly mentioned lint command must not reintroduce the lint gate.
1084
1086
  const staticCommands = commands.filter((command) => !isFrontendLintVerifyCommand(command));
1085
1087
  return {
1086
1088
  lint: {
1087
- ...(lintCommands.length > 0 ? { commands: lintCommands } : {}),
1088
1089
  commandSource: input.commandSource,
1089
1090
  },
1090
1091
  static: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tea-agent/loop-agent",
3
- "version": "0.27.1-beta.1",
3
+ "version": "0.27.1-beta.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "loop-agent": "bin/loop-agent.js",