Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Browserify #2254

Merged
merged 41 commits into from
Aug 17, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
3b9ac4b
Start refactoring query.cast()
vkarpov15 Jun 13, 2014
01ce29a
Refactor out cast() into something that doesn't require mquery
vkarpov15 Jun 13, 2014
242f208
Remove array.js dependency on Query
vkarpov15 Jun 13, 2014
550278a
Nasty hack so we don't include the node driver
vkarpov15 Jun 14, 2014
8a3fff5
A few quick hacks to avoid some browserify shoals
vkarpov15 Jun 14, 2014
2448649
Verrrry rough proof of concept
vkarpov15 Jun 14, 2014
11de000
Clean up rebase, bring fix for #1874 into browserify branch
vkarpov15 Jul 18, 2014
1c06549
Eliminate some hackiness from browser document
vkarpov15 Jul 18, 2014
4fd49f2
Move browser sub-package into its own file, add browser tag to
vkarpov15 Jul 18, 2014
134c457
Some basic work for local karma tests
vkarpov15 Jul 18, 2014
98edcba
Rename browser tests so `make test` doesn't pick them up
vkarpov15 Jul 18, 2014
69be229
Real document test checks out in Chrome
vkarpov15 Jul 18, 2014
ad4935f
Add a simple karma+sauce config for testing on mobile browsers and bu…
vkarpov15 Jul 18, 2014
062935d
Small hack to simulate Function.name in IE
vkarpov15 Jul 21, 2014
dcbd291
Clean up tests
vkarpov15 Jul 21, 2014
27ae428
Fix small mistake with fixes for interpretAsType
vkarpov15 Jul 21, 2014
4cb3caf
Clean up some more quirks with interpretAsType
vkarpov15 Jul 22, 2014
f05fefe
IE11 tests clean
vkarpov15 Jul 22, 2014
4a01227
Tests clean on IE9+10
vkarpov15 Jul 23, 2014
4e1b464
Add bin directory, tweak .npmignore to not include browser component
vkarpov15 Jul 23, 2014
0f023f3
Revert "Tests clean on IE9+10"
vkarpov15 Jul 24, 2014
6ce5a6c
Baby steps toward removing dependency on __proto__ mess
vkarpov15 Jul 24, 2014
d70b7c4
Remove __proto__ from schemas
vkarpov15 Jul 24, 2014
bedf8d4
Quick fix in documentarray
vkarpov15 Aug 7, 2014
ebd76f2
Hack to make document+embedded document inheritance not use __proto__
vkarpov15 Aug 7, 2014
969f92c
Remove __proto__ hack from statemachine
vkarpov15 Aug 7, 2014
b04fbaf
Clean up some document-related inheritance issues
vkarpov15 Aug 7, 2014
b64cfcf
Remove __proto__
archangel-irk Aug 15, 2014
415ca95
Clean up some NodeJS tests, instanceof should no longer work for sche…
vkarpov15 Aug 15, 2014
4ece6d4
Fix another array-inheritance-related issue
vkarpov15 Aug 15, 2014
35e2c67
Fix buffers
vkarpov15 Aug 15, 2014
82be65c
chore; run make browser
vkarpov15 Aug 15, 2014
61e61da
Clean up some assumptions in array tests - instanceof DocumentArray n…
vkarpov15 Aug 15, 2014
f17d7dc
Remove some more no longer supported assumptions about arrays
vkarpov15 Aug 15, 2014
18d156e
NodeJS tests clean
vkarpov15 Aug 15, 2014
5bd6699
Add accessors into browserify component
vkarpov15 Aug 15, 2014
c6292ff
More fixes for IE9 and error messages
vkarpov15 Aug 15, 2014
8ab9df8
Fix error inheritance
vkarpov15 Aug 15, 2014
f998fb0
Clean up errors, validation works on IE9
vkarpov15 Aug 15, 2014
b81cee4
Remove __proto__ from MongooseBuffer && Schema
archangel-irk Aug 16, 2014
b859de2
Fix up minor typo with buffers
vkarpov15 Aug 16, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Makefile
CNAME
index.html
index.jade
bin/
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ DOCFILE = docs/source/_docs
STABLE_BRANCH = 3.8.x

test:
@MONGOOSE_DISABLE_STABILITY_WARNING=1 ./node_modules/.bin/mocha $(T) --async-only test/**/*.test.js
@MONGOOSE_DISABLE_STABILITY_WARNING=1 ./node_modules/.bin/mocha $(T) --async-only test/*.test.js

test-short:
@MONGOOSE_DISABLE_STABILITY_WARNING=1 ./node_modules/.bin/mocha $(T) -g LONG -i --async-only test/**/*.test.js
Expand Down Expand Up @@ -67,3 +67,6 @@ copyunstable:
rm -rf ./tmp

.PHONY: test test-short test-long ghpages site docs docclean gendocs docs_from_master docs_unstable master copytmp copyunstable gitreset docclean_unstable

browser:
./node_modules/browserify/bin/cmd.js -o ./bin/mongoose.js lib/browser.js
Loading