|
@@ -14,8 +14,8 @@
|
14
|
14
|
"ci": "CI=true && yarn lint && yarn test",
|
15
|
15
|
"ci:publish": "yarn semantic-release",
|
16
|
16
|
"lint": "yarn tsc --noEmit && yarn eslint ./src --ext .ts,.tsx",
|
17
|
|
- "prepare": "yarn tsc",
|
18
|
|
- "semantic-release": "semantic-release",
|
|
17
|
+ "build": "yarn tsc",
|
|
18
|
+ "prepublish": "yarn build",
|
19
|
19
|
"test": "yarn jest"
|
20
|
20
|
},
|
21
|
21
|
"peerDependencies": {
|
|
@@ -56,5 +56,10 @@
|
56
|
56
|
"repository": {
|
57
|
57
|
"type": "git",
|
58
|
58
|
"url": "https://github.com/react-native-community/react-native-webview.git"
|
59
|
|
- }
|
|
59
|
+ },
|
|
60
|
+ "files": [
|
|
61
|
+ "lib",
|
|
62
|
+ "index.js",
|
|
63
|
+ "index.d.ts"
|
|
64
|
+ ]
|
60
|
65
|
}
|