Skip to content

Commit

Permalink
prepare release without leveldown
Browse files Browse the repository at this point in the history
  • Loading branch information
stockulus committed Sep 2, 2016
1 parent 61f6ff3 commit e06ca84
Show file tree
Hide file tree
Showing 38 changed files with 18 additions and 2,224 deletions.
7 changes: 2 additions & 5 deletions example/copy_packages.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
#!/usr/bin/env bash
echo "Copy packages"
cp ../packages/pouchdb-adapter-leveldb-core-rn/src/*.* ./node_modules/pouchdb-adapter-leveldb-core-rn/src
cp ../packages/pouchdb-adapter-leveldb-core-rn/*.* ./node_modules/pouchdb-adapter-leveldb-core-rn
cp ../packages/pouchdb-adapter-asyncstorage/*.* ./node_modules/pouchdb-adapter-asyncstorage
cp ../packages/pouchdb-react-native/*.* ./node_modules/pouchdb-react-native
cp ../packages/pouchdb-adapter-asyncstorage-pure/*.* ./node_modules/pouchdb-adapter-asyncstorage-pure
cp ../packages/pouchdb-adapter-asyncstorage-pure/src/*.* ./node_modules/pouchdb-adapter-asyncstorage-pure/src
cp ../packages/pouchdb-adapter-asyncstorage/*.* ./node_modules/pouchdb-adapter-asyncstorage
cp ../packages/pouchdb-adapter-asyncstorage/src/*.* ./node_modules/pouchdb-adapter-asyncstorage/src
5 changes: 2 additions & 3 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example",
"version": "5.4.20",
"version": "5.5.0-beta-2",
"author": "Christoph Stock (@stockulus)",
"description": "small example app for pouchdb-react-native",
"license": "MIT",
Expand All @@ -18,8 +18,7 @@
"postinstall": "npm run copy-packages"
},
"dependencies": {
"pouchdb-adapter-asyncstorage-pure": "5.4.20",
"pouchdb-react-native": "5.4.20",
"pouchdb-react-native": "5.5.0-beta-2",
"react": "15.3.1",
"react-native": "0.32.0",
"react-native-action-button": "2.0.1"
Expand Down
45 changes: 0 additions & 45 deletions packages/pouchdb-adapter-asyncstorage-pure/package.json

This file was deleted.

31 changes: 0 additions & 31 deletions packages/pouchdb-adapter-asyncstorage-pure/readme.md

This file was deleted.

20 changes: 0 additions & 20 deletions packages/pouchdb-adapter-asyncstorage/index.js

This file was deleted.

26 changes: 9 additions & 17 deletions packages/pouchdb-adapter-asyncstorage/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "pouchdb-adapter-asyncstorage",
"version": "5.4.20",
"version": "5.5.0-beta-2",
"description": "asyncstorage adapter for PouchDB",
"main": "index.js",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stockulus/pouchdb-react-native.git"
Expand All @@ -23,26 +23,18 @@
},
"homepage": "https://github.com/stockulus/pouchdb-react-native#readme",
"dependencies": {
"argsarray": "0.0.1",
"asyncstorage-down": "2.4.1",
"atob": "2.0.3",
"blob-polyfill": "1.0.20150320",
"btoa": "1.1.2",
"buffer": "4.9.1",
"core-util-is": "1.0.2",
"double-ended-queue": "2.1.0-0",
"events": "1.1.1",
"fs": "0.0.2",
"inherits": "2.0.1",
"js-extend": "1.0.1",
"leveldown": "1.4.6",
"lie": "3.1.0",
"path": "0.12.7",
"pouchdb-adapter-leveldb-core-rn": "5.4.20",
"stream": "0.0.2",
"through2": "2.0.1",
"util": "0.10.3",
"vuvuzela": "1.0.3"
"left-pad": "1.1.1",
"pouchdb-adapter-utils": "5.4.5",
"pouchdb-binary-utils": "5.4.5",
"pouchdb-errors": "5.4.5",
"pouchdb-md5": "5.4.5",
"pouchdb-merge": "5.4.5",
"pouchdb-utils": "5.4.5"
},
"devDependencies": {},
"peerDependencies": {},
Expand Down
10 changes: 0 additions & 10 deletions packages/pouchdb-adapter-asyncstorage/polyfill.js

This file was deleted.

3 changes: 1 addition & 2 deletions packages/pouchdb-adapter-asyncstorage/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ pouchdb-adapter-asyncstorage

PouchDB adapter using AsyncStorage as its data store. Designed to run in ReactNative. Its adapter name is `'asyncstorage'`.

[![bitHound Overall Score](https://www.bithound.io/github/stockulus/pouchdb-react-native/badges/score.svg)](https://www.bithound.io/github/stockulus/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/dm/pouchdb-adapter-asyncstorage.svg)](https://www.npmjs.com/package/pouchdb-adapter-asyncstorage) [![travis-ci.org](https://travis-ci.org/stockulus/pouchdb-react-native.svg)](https://travis-ci.org/stockulus/pouchdb-react-native) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![license](https://img.shields.io/npm/l/pouchdb-adapter-asyncstorage.svg?maxAge=2592000)](https://opensource.org/licenses/MIT)

[![bitHound Overall Score](https://www.bithound.io/github/stockulus/pouchdb-react-native/badges/score.svg)](https://www.bithound.io/github/stockulus/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/dm/pouchdb-adapter-asyncstorage.svg)](https://www.npmjs.com/package/pouchdb-adapter-asyncstorage) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![license](https://img.shields.io/npm/l/pouchdb-adapter-asyncstorage.svg?maxAge=2592000)](https://opensource.org/licenses/MIT)
### Usage

```bash
Expand Down
202 changes: 0 additions & 202 deletions packages/pouchdb-adapter-leveldb-core-rn/LICENSE

This file was deleted.

Loading

0 comments on commit e06ca84

Please sign in to comment.