Browse Source

Refs #1661: Bumped version. Added a `TODO` about the usage of `sift` in `MatchDocumentSource`

http://source.rd.rcg.local/trac/eagle6/changeset/1416/Eagle6_SVN
Kyle Davis 12 years ago
parent
commit
777cdf685f
2 changed files with 6 additions and 4 deletions
  1. 2 0
      README.md
  2. 4 4
      package.json

+ 2 - 0
README.md

@@ -58,3 +58,5 @@ Here is a list of global items that I know about that may need to be done in the
   * Make sure that nobody is using private (underscored) variables that they shouldn't be ...might have broken encapsulation somewhere along the way...
   * Make sure that nobody is using private (underscored) variables that they shouldn't be ...might have broken encapsulation somewhere along the way...
   * Make sure  that all of the pure `virtual`s (i.e., `/virtual .* = 0;$/`) are implemented as a proto with a throw new Error("NOT IMPLEMENTED BY INHERITOR") or similar
   * Make sure  that all of the pure `virtual`s (i.e., `/virtual .* = 0;$/`) are implemented as a proto with a throw new Error("NOT IMPLEMENTED BY INHERITOR") or similar
   * Need to make real exceptions to emulate the MongoDB assertions (e.g., `uassert` might be `munge.UserException`) so they can be caught properly
   * Need to make real exceptions to emulate the MongoDB assertions (e.g., `uassert` might be `munge.UserException`) so they can be caught properly
+  * Currently using the `sift` package to fake the `MatchDocumentSource` class but need to actually port the real code
+

+ 4 - 4
package.json

@@ -1,6 +1,6 @@
 {
 {
 	"name": "munge",
 	"name": "munge",
-	"version": "0.4.2+2013.02.22",
+	"version": "0.4.3+2013.03.08",
 	"description": "A JavaScript data munging pipeline based on the MongoDB aggregation framework.",
 	"description": "A JavaScript data munging pipeline based on the MongoDB aggregation framework.",
 	"author": "Rivera Group <support@riverainc.com>",
 	"author": "Rivera Group <support@riverainc.com>",
 	"contributors": [
 	"contributors": [
@@ -23,9 +23,9 @@
 		"alteration"
 		"alteration"
 	],
 	],
 	"dependencies": {
 	"dependencies": {
-		"stream-utils":"*",
-		"es6-shim":"*",
-		"sift":"*"
+		"stream-utils": "*",
+		"es6-shim": "*",
+		"sift": "*"
 	},
 	},
 	"devDependencies": {
 	"devDependencies": {
 		"mocha": "*",
 		"mocha": "*",