Skip to content

Commit

Permalink
A bunch of changes:
Browse files Browse the repository at this point in the history
- JSON is now allowed in some places that were dict-only previously.
- pouchdb.objectstorage - using jsonpickle.
- pouchdb.mapping - like couchdb.mapping - experimental!
- Improved JS test coverage + es3ify + pouchdb-extend.
- Doctests & other test suite improvements.
- aliases in_snake_case for camelCaseNamed methods.
- Improved documentation. Mostly adding the above.
  • Loading branch information
marten-de-vries committed May 26, 2014
1 parent ff03ed4 commit 19742fa
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@
"promise-nodify": "*"
},
"devDependencies": {
"browserify": "*",
"uglify-js": "*"
"es3ify": "*"
},
"scripts": {
"build-js": "mkdir -p ../../dist && browserify index.js -s Validation -o ../../dist/pouchdb-validation.js",
"build": "npm run build-js; cd ../../dist; uglifyjs pouchdb-validation.js -mc > pouchdb-validation.min.js"
},
"browserify": {
"transform": [
"es3ify"
]
}
}

0 comments on commit 19742fa

Please sign in to comment.