Bladeren bron

src2 --> src

Daniel Zlotin 8 jaren geleden
bovenliggende
commit
193e3926a4

+ 1
- 1
.github/CONTRIBUTING Bestand weergeven

1
-Before contributing...
1
+Before contributing... COMING SOON!

+ 14
- 9
package.json Bestand weergeven

5
   "license": "MIT",
5
   "license": "MIT",
6
   "nativePackage": true,
6
   "nativePackage": true,
7
   "author": "Tal Kol <talkol@gmail.com>",
7
   "author": "Tal Kol <talkol@gmail.com>",
8
+  "contributors": [
9
+    "Daniel Zlotin <zlotindaniel@gmail.com>",
10
+    "Guy Carmeli <guyc@wix.com>",
11
+    "Ran Greenberg <rang@wix.com>",
12
+    "Artal Druk <artald@wix.com>"
13
+  ],
8
   "publishConfig": {
14
   "publishConfig": {
9
     "registry": "https://registry.npmjs.org/"
15
     "registry": "https://registry.npmjs.org/"
10
   },
16
   },
20
   "main": "src/index.js",
26
   "main": "src/index.js",
21
   "scripts": {
27
   "scripts": {
22
     "build": ":",
28
     "build": ":",
23
-    "lint": "eslint src2",
24
-    "test:js": "BABEL_ENV=test jest --coverage",
25
-    "test:android": "cd android && ./gradlew clean testDebugUnitTest",
26
-    "test:ios": ":",
27
-    "pretest": "npm run lint",
28
-    "test": "npm run test:js && npm run test:android && npm run test:ios",
29
-    "test:watch": "BABEL_ENV=test jest --coverage --watch",
30
-    "release": ": #npm version prerelease && npm publish --tag next && npm view react-native-navigation dist-tags && git push"
29
+    "lint": "eslint src",
30
+    "test-js": "BABEL_ENV=test jest --coverage",
31
+    "test-android": "cd android && ./gradlew clean testDebugUnitTest",
32
+    "test-ios": ":",
33
+    "test": "npm run lint && npm run test:js && npm run test:android && npm run test:ios",
34
+    "test-watch": "BABEL_ENV=test jest --coverage --watch",
35
+    "release": ":"
31
   },
36
   },
32
   "peerDependencies": {
37
   "peerDependencies": {
33
     "react-native": "*",
38
     "react-native": "*",
68
     "preset": "react-native",
73
     "preset": "react-native",
69
     "testPathDirs": [
74
     "testPathDirs": [
70
       "node_modules",
75
       "node_modules",
71
-      "src2"
76
+      "src"
72
     ],
77
     ],
73
     "resetMocks": true,
78
     "resetMocks": true,
74
     "resetModules": true
79
     "resetModules": true

src2/Navigation.js → src/Navigation.js Bestand weergeven

140
 //}
140
 //}
141
 
141
 
142
 // new work on platformSpecificDeprecated.ios.js:
142
 // new work on platformSpecificDeprecated.ios.js:
143
-import Navigation from './../Navigation';
143
+//import Navigation from './../Navigation';
144
 //import Controllers, {Modal, Notification} from './controllers';
144
 //import Controllers, {Modal, Notification} from './controllers';
145
 //+import _ from 'lodash';
145
 //+import _ from 'lodash';
146
 //+import PropRegistry from '../PropRegistry';
146
 //+import PropRegistry from '../PropRegistry';

src2/Navigation.test.js → src/Navigation.test.js Bestand weergeven


src2/commands/Commands.js → src/commands/Commands.js Bestand weergeven


src2/commands/Commands.test.js → src/commands/Commands.test.js Bestand weergeven


src2/commands/valid-commands.js → src/commands/valid-commands.js Bestand weergeven


src2/containers/ContainerRegistry.js → src/containers/ContainerRegistry.js Bestand weergeven


src2/containers/ContainerRegistry.test.js → src/containers/ContainerRegistry.test.js Bestand weergeven


src2/containers/ContainerStore.js → src/containers/ContainerStore.js Bestand weergeven


src2/containers/ContainerStore.test.js → src/containers/ContainerStore.test.js Bestand weergeven


src2/containers/PropsStore.js → src/containers/PropsStore.js Bestand weergeven


src2/containers/PropsStore.test.js → src/containers/PropsStore.test.js Bestand weergeven


src2/env.test.js → src/env.test.js Bestand weergeven


src2/index.js → src/index.js Bestand weergeven


src2/index.test.js → src/index.test.js Bestand weergeven


src2/integration/env.test.js → src/integration/env.test.js Bestand weergeven


src2/integration/remx-support-component.js → src/integration/remx-support-component.js Bestand weergeven


src2/integration/remx-support-store.js → src/integration/remx-support-store.js Bestand weergeven


src2/integration/remx-support.test.js → src/integration/remx-support.test.js Bestand weergeven


+ 3
- 3
wallaby.js Bestand weergeven

13
 
13
 
14
     files: [
14
     files: [
15
       'package.json',
15
       'package.json',
16
-      'src2/**/*.js',
17
-      '!src2/**/*.test.js'
16
+      'src/**/*.js',
17
+      '!src/**/*.test.js'
18
     ],
18
     ],
19
 
19
 
20
     tests: [
20
     tests: [
21
-      'src2/**/*.test.js'
21
+      'src/**/*.test.js'
22
     ],
22
     ],
23
 
23
 
24
     compilers: {
24
     compilers: {