@coze-arch/cli 0.0.28 → 0.0.29

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.
@@ -23,6 +23,7 @@ export const REGEXP_ONLY_DIGITS_AND_CHARS = '^[a-zA-Z0-9]+$';
23
23
  export function defaultPasteTransformer(maxLength: number) {
24
24
  return (pasted: string): string => {
25
25
  // Match exactly maxLength digits, not preceded or followed by another digit
26
+ // eslint-disable-next-line @coze-arch/no-regexp-lookbehind -- Expo/React Native template, runs on Hermes (supports lookbehind)
26
27
  const otpRegex = new RegExp(`(?<!\\d)(\\d{${maxLength}})(?!\\d)`);
27
28
  const match = pasted.match(otpRegex);
28
29
 
@@ -67,7 +67,7 @@
67
67
  "@tailwindcss/postcss": "^4.1.18",
68
68
  "@tarojs/cli": "4.1.9",
69
69
  "@tarojs/plugin-generator": "4.1.9",
70
- "@tarojs/plugin-mini-ci": "^4.1.9",
70
+ "@tarojs/plugin-mini-ci": "4.1.9",
71
71
  "@tarojs/vite-runner": "4.1.9",
72
72
  "@types/minimatch": "^5",
73
73
  "@types/react": "^18.0.0",
@@ -101,6 +101,9 @@
101
101
  "pnpm": ">=9.0.0"
102
102
  },
103
103
  "pnpm": {
104
+ "overrides": {
105
+ "esbuild": "0.25.12"
106
+ },
104
107
  "patchedDependencies": {
105
108
  "@tarojs/plugin-mini-ci@4.1.9": "patches/@tarojs__plugin-mini-ci@4.1.9.patch"
106
109
  }