Browse Source

Added new run webstorm run configurations

Arnaud Vergnet 3 years ago
parent
commit
4ee7490af4

+ 1
- 0
.gitignore View File

@@ -25,6 +25,7 @@ DerivedData
25 25
 #
26 26
 build/
27 27
 .idea
28
+!.idea/runConfigurations
28 29
 .gradle
29 30
 local.properties
30 31
 *.iml

+ 12
- 0
.idea/runConfigurations/Lint_Check.xml View File

@@ -0,0 +1,12 @@
1
+<component name="ProjectRunConfigurationManager">
2
+  <configuration default="false" name="Lint Check" type="js.build_tools.npm">
3
+    <package-json value="$PROJECT_DIR$/package.json" />
4
+    <command value="run" />
5
+    <scripts>
6
+      <script value="lint" />
7
+    </scripts>
8
+    <node-interpreter value="project" />
9
+    <envs />
10
+    <method v="2" />
11
+  </configuration>
12
+</component>

+ 13
- 0
.idea/runConfigurations/Run_Android.xml View File

@@ -0,0 +1,13 @@
1
+<component name="ProjectRunConfigurationManager">
2
+  <configuration default="false" name="Run Android" type="ReactNative" factoryName="React Native">
3
+    <node-interpreter value="project" />
4
+    <react-native value="$PROJECT_DIR$/node_modules/react-native" />
5
+    <platform value="ANDROID" />
6
+    <envs />
7
+    <only-packager />
8
+    <browser value="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" />
9
+    <method v="2">
10
+      <option name="ReactNativePackager" enabled="true" />
11
+    </method>
12
+  </configuration>
13
+</component>

+ 12
- 0
.idea/runConfigurations/Run_Android_Release.xml View File

@@ -0,0 +1,12 @@
1
+<component name="ProjectRunConfigurationManager">
2
+  <configuration default="false" name="Run Android Release" type="js.build_tools.npm">
3
+    <package-json value="$PROJECT_DIR$/package.json" />
4
+    <command value="run" />
5
+    <scripts>
6
+      <script value="android-release" />
7
+    </scripts>
8
+    <node-interpreter value="project" />
9
+    <envs />
10
+    <method v="2" />
11
+  </configuration>
12
+</component>

+ 13
- 0
.idea/runConfigurations/Run_iOS.xml View File

@@ -0,0 +1,13 @@
1
+<component name="ProjectRunConfigurationManager">
2
+  <configuration default="false" name="Run iOS" type="ReactNative" factoryName="React Native">
3
+    <node-interpreter value="project" />
4
+    <react-native value="$PROJECT_DIR$/node_modules/react-native" />
5
+    <platform value="IOS" />
6
+    <envs />
7
+    <only-packager />
8
+    <browser value="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3" />
9
+    <method v="2">
10
+      <option name="ReactNativePackager" enabled="true" />
11
+    </method>
12
+  </configuration>
13
+</component>

Loading…
Cancel
Save