create-turniza-app 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-turniza-app",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "CLI scaffold for creating new Turniza monorepo apps (Flutter + Astro + Cloudflare Workers)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -26,11 +26,19 @@ app.*.map.json
26
26
  **/ios/Flutter/ephemeral/
27
27
  **/ios/Flutter/flutter_export_environment.sh
28
28
 
29
+ # Flutter auto-generated plugin registrants
30
+ **/android/**/GeneratedPluginRegistrant.java
31
+ **/ios/Runner/GeneratedPluginRegistrant.h
32
+ **/ios/Runner/GeneratedPluginRegistrant.m
33
+
29
34
  # Android Studio build artifacts
30
35
  **/android/app/debug
31
36
  **/android/app/profile
32
37
  **/android/app/release
33
38
 
39
+ # Gradle wrapper (downloaded automatically)
40
+ **/android/gradle/wrapper/gradle-wrapper.jar
41
+
34
42
  # iOS
35
43
  **/ios/Pods/
36
44
  **/ios/.symlinks/
@@ -1,24 +0,0 @@
1
- package io.flutter.plugins;
2
-
3
- import androidx.annotation.Keep;
4
- import androidx.annotation.NonNull;
5
- import io.flutter.Log;
6
-
7
- import io.flutter.embedding.engine.FlutterEngine;
8
-
9
- /**
10
- * Generated file. Do not edit.
11
- * This file is generated by the Flutter tool based on the
12
- * plugins that support the Android platform.
13
- */
14
- @Keep
15
- public final class GeneratedPluginRegistrant {
16
- private static final String TAG = "GeneratedPluginRegistrant";
17
- public static void registerWith(@NonNull FlutterEngine flutterEngine) {
18
- try {
19
- flutterEngine.getPlugins().add(new dev.flutter.plugins.integration_test.IntegrationTestPlugin());
20
- } catch (Exception e) {
21
- Log.e(TAG, "Error registering plugin integration_test, dev.flutter.plugins.integration_test.IntegrationTestPlugin", e);
22
- }
23
- }
24
- }
@@ -1,19 +0,0 @@
1
- //
2
- // Generated file. Do not edit.
3
- //
4
-
5
- // clang-format off
6
-
7
- #ifndef GeneratedPluginRegistrant_h
8
- #define GeneratedPluginRegistrant_h
9
-
10
- #import <Flutter/Flutter.h>
11
-
12
- NS_ASSUME_NONNULL_BEGIN
13
-
14
- @interface GeneratedPluginRegistrant : NSObject
15
- + (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry;
16
- @end
17
-
18
- NS_ASSUME_NONNULL_END
19
- #endif /* GeneratedPluginRegistrant_h */
@@ -1,21 +0,0 @@
1
- //
2
- // Generated file. Do not edit.
3
- //
4
-
5
- // clang-format off
6
-
7
- #import "GeneratedPluginRegistrant.h"
8
-
9
- #if __has_include(<integration_test/IntegrationTestPlugin.h>)
10
- #import <integration_test/IntegrationTestPlugin.h>
11
- #else
12
- @import integration_test;
13
- #endif
14
-
15
- @implementation GeneratedPluginRegistrant
16
-
17
- + (void)registerWithRegistry:(NSObject<FlutterPluginRegistry>*)registry {
18
- [IntegrationTestPlugin registerWithRegistrar:[registry registrarForPlugin:@"IntegrationTestPlugin"]];
19
- }
20
-
21
- @end