@coze-arch/cli 0.0.27 → 0.0.28-alpha.69abc9

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.
@@ -10,5 +10,6 @@ expo-env.d.ts
10
10
  logs/
11
11
  *.tsbuildinfo
12
12
  node-compile-cache/
13
+ .codegraph/
13
14
  .cozeproj/reduction
14
15
  .preview
@@ -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
 
@@ -1,2 +1,3 @@
1
+ .codegraph/
1
2
  .cozeproj/reduction
2
3
  .preview
@@ -98,5 +98,6 @@ Desktop.ini
98
98
  .turbo
99
99
 
100
100
  .coze-logs
101
+ .codegraph/
101
102
  .cozeproj/reduction
102
103
  .preview
@@ -28,5 +28,6 @@ logs
28
28
  .env
29
29
  .env.\*
30
30
  !.env.example
31
+ .codegraph/
31
32
  .cozeproj/reduction
32
33
  .preview
@@ -1,5 +1,6 @@
1
1
  node_modules
2
2
  dist
3
3
  .env
4
+ .codegraph/
4
5
  .cozeproj/reduction
5
6
  .preview
@@ -39,5 +39,6 @@ pnpm-debug.log*
39
39
 
40
40
  # Key
41
41
  # key/
42
+ .codegraph/
42
43
  .cozeproj/reduction
43
44
  .preview
@@ -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",
@@ -80,7 +80,7 @@
80
80
  "eslint-config-taro": "4.1.9",
81
81
  "eslint-plugin-react": "^7.34.1",
82
82
  "eslint-plugin-react-hooks": "^4.4.0",
83
- "eslint-plugin-tailwindcss": "^3.18.2",
83
+ "eslint-plugin-tailwindcss": "^3.18.3",
84
84
  "less": "^4.2.0",
85
85
  "lint-staged": "^16.1.2",
86
86
  "miniprogram-ci": "^2.1.26",
@@ -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
  }