@l4yercak3/cli 1.2.18 → 1.2.20
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/.claude/settings.local.json +3 -1
- package/docs/CRM-PIPELINES-SEQUENCES-SPEC.md +429 -0
- package/package.json +1 -1
- package/src/commands/login.js +26 -7
- package/src/commands/spread.js +150 -4
- package/src/detectors/expo-detector.js +4 -4
- package/src/generators/env-generator.js +23 -8
- package/src/generators/expo-auth-generator.js +1009 -0
- package/src/generators/quickstart/components-mobile/index.js +1440 -0
- package/src/generators/quickstart/hooks/index.js +23 -5
- package/src/generators/quickstart/index.js +44 -10
- package/src/generators/quickstart/screens/index.js +1498 -0
- package/tests/expo-detector.test.js +3 -4
|
@@ -42,11 +42,10 @@ describe('ExpoDetector', () => {
|
|
|
42
42
|
|
|
43
43
|
const result = detector.detect('/test/project');
|
|
44
44
|
|
|
45
|
-
// Pure React Native has
|
|
46
|
-
// which is
|
|
47
|
-
// but the detector still returns useful data
|
|
45
|
+
// Pure React Native has confidence of 0.85
|
|
46
|
+
// which is above the 0.8 threshold, so it will be detected
|
|
48
47
|
expect(result.detected).toBe(true);
|
|
49
|
-
expect(result.confidence).toBe(0.
|
|
48
|
+
expect(result.confidence).toBe(0.85);
|
|
50
49
|
});
|
|
51
50
|
|
|
52
51
|
it('does not detect non-Expo/React Native project', () => {
|