Skip to content

Commit

Permalink
fix(shape): convert nullable boolean to false
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Apr 15, 2024
1 parent 8c82602 commit 84cc793
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 28 deletions.
5 changes: 5 additions & 0 deletions .changeset/wise-shoes-turn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@crystallize/import-utilities': minor
---

convert nullable boolean to false
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crystallize/import-utilities",
"version": "1.30.0",
"version": "1.31.0",
"main": "dist/index.js",
"author": "Crystallize <hello@crystallize.com>",
"contributors": [
Expand Down Expand Up @@ -38,9 +38,9 @@
},
"dependencies": {
"@crystallize/content-transformer": "^9.2.0",
"@crystallize/import-export-sdk": "^0.1.4",
"@crystallize/js-api-client": "^1.12.2",
"@crystallize/schema": "^0.2.0",
"@crystallize/import-export-sdk": "^0.1.5",
"@crystallize/js-api-client": "^2.5.0",
"@crystallize/schema": "^0.3.0",
"dotenv": "^10.0.0",
"download": "^8.0.0",
"duration": "^0.2.2",
Expand Down
72 changes: 48 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/bootstrap-tenant/bootstrapper/utils/dump.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import util from 'util'
export const dump = (obj: any, depth = 200) => {
console.log(util.inspect(obj, false, depth, true))
}

0 comments on commit 84cc793

Please sign in to comment.