File tree Expand file tree Collapse file tree 5 files changed +82
-0
lines changed Expand file tree Collapse file tree 5 files changed +82
-0
lines changed Original file line number Diff line number Diff line change 1+ # Legacy storage backend
2+ node_modules
3+ yarn.lock
4+ # see https://github.com/yarnpkg/yarn/issues/7540
5+ . /src /
6+ CONTRIBUTING.md
7+ CODE_OF_CONDUCT.md
8+
9+ # ######### Trash ##########
10+ .DS_Store
11+ .DS_Store ?
12+ * .DS_Store
13+ coverage.android.json
14+ coverage.ios.json
15+ coverage
16+ npm-debug.log
17+ .github
18+ ._ *
19+ .Spotlight-V100
20+ .Trashes
21+ ehthumbs.db
22+ Thumbs.dbandroid /gradle
23+ .idea
24+ bin /test.js
25+ codorials
26+ .vscode
27+ .nyc_output
28+ yarn-error.log
Original file line number Diff line number Diff line change 1+ # Storage Backend: Web
2+
3+ // todo
4+
5+ ## Installation
6+
7+ // todo
8+
9+ ## Usage
10+
11+ // todo
12+
13+ ## License
14+
15+ MIT
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " @react-native-community/async-storage-backend-web" ,
3+ "version" : " 2.0.0" ,
4+ "main" : " build/index.js" ,
5+ "types" : " types/index.d.ts" ,
6+ "author" : " Krzysztof Borowy <dev@krizzu.dev>" ,
7+ "license" : " MIT" ,
8+ "scripts" : {
9+ "build" : " babel src --root-mode upward --out-dir build/ --extensions .ts --ignore build/**/* --ignore types/**/* --source-maps inline" ,
10+ "clean" : " rm build -rf" ,
11+ "generate:types" : " tsc src/index.ts --noEmit false --lib es2015 --declarationDir types/ -d true -emitDeclarationOnly true" ,
12+ "prepublish" : " yarn clean && yarn build"
13+ },
14+ "dependencies" : {
15+ "@react-native-community/async-storage" : " ^2.0"
16+ },
17+ "peerDependencies" : {
18+ "react" : " ^16.0" ,
19+ "react-native" : " >=0.58"
20+ },
21+ "devDependencies" : {
22+ "react" : " ^16.0" ,
23+ "react-native" : " >=0.58"
24+ }
25+ }
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) React Native Community.
3+ *
4+ * This source code is licensed under the MIT license found in the
5+ * LICENSE file in the root directory of this source tree.
6+ *
7+ */
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) React Native Community.
3+ *
4+ * This source code is licensed under the MIT license found in the
5+ * LICENSE file in the root directory of this source tree.
6+ *
7+ */
You can’t perform that action at this time.
0 commit comments