2 Commits

Author SHA1 Message Date
a877616739 1.0.4 2022-06-06 13:08:45 +02:00
377177bbbe fix(core): update 2022-06-06 13:08:45 +02:00
4 changed files with 8 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@pushrocks/mongodump", "name": "@pushrocks/mongodump",
"version": "1.0.3", "version": "1.0.4",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@pushrocks/mongodump", "name": "@pushrocks/mongodump",
"version": "1.0.3", "version": "1.0.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@pushrocks/lik": "^6.0.0", "@pushrocks/lik": "^6.0.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/mongodump", "name": "@pushrocks/mongodump",
"version": "1.0.3", "version": "1.0.4",
"private": false, "private": false,
"description": "a tool to handle dumps of mongodb databases", "description": "a tool to handle dumps of mongodb databases",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",

View File

@@ -19,7 +19,8 @@ export const generateTestData = async (mongoDescriptorArg: smartdata.IMongoDescr
@smartdata.svDb() @smartdata.svDb()
data = { data = {
'some' : { 'some' : {
'complex': 'structure' 'complex': 'structure',
more: 4
} }
} }
} }
@@ -32,7 +33,8 @@ export const generateTestData = async (mongoDescriptorArg: smartdata.IMongoDescr
@smartdata.svDb() @smartdata.svDb()
data = { data = {
'some' : { 'some' : {
'complex': 'structure' 'complex': 'structure',
more: 2
} }
} }
} }

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@pushrocks/mongodump', name: '@pushrocks/mongodump',
version: '1.0.3', version: '1.0.4',
description: 'a tool to handle dumps of mongodb databases' description: 'a tool to handle dumps of mongodb databases'
} }