Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e472115

Browse files
author
jh3r
committed
Project init
1 parent 7ef72b3 commit e472115

File tree

8 files changed

+62
-0
lines changed

8 files changed

+62
-0
lines changed

‎.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
6+
indent_style = space
7+
indent_size = 2
8+
tab_width = 2
9+
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true

‎.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist/

‎.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
examples/
3+
src/

‎.prettierrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
parser: 'babylon',
3+
printWidth: 120,
4+
semi: true,
5+
singleQuote: true
6+
};

‎CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# CHANGELOG
2+
3+
## 0.1.0 (2018-10-xx)

‎package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "react-native-webview-js-bridge",
3+
"version": "1.0.0",
4+
"description": "A js bridge for react-native webview.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/react-native-org/react-native-webview-js-bridge.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "MIT",
16+
"bugs": {
17+
"url": "https://github.com/react-native-org/react-native-webview-js-bridge/issues"
18+
},
19+
"homepage": "https://github.com/react-native-org/react-native-webview-js-bridge#readme",
20+
"dependencies": {
21+
"events": "^3.0.0"
22+
}
23+
}

‎src/index.js

Whitespace-only changes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /