yves 1.0.86 → 1.0.88

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.
Files changed (3) hide show
  1. package/dist/yves.js +13872 -3047
  2. package/lib/yves.js +1 -1
  3. package/package.json +6 -6
package/lib/yves.js CHANGED
@@ -20,9 +20,9 @@ function isItA( obj, A ) {
20
20
  }
21
21
 
22
22
  import sortobject from 'deep-sort-object'
23
- import supportsColor from 'supports-color'
24
23
  import debug from 'debug'
25
24
  import jsonc from 'jsonc'
25
+
26
26
  let stack = []
27
27
 
28
28
  const verbose = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yves",
3
- "version": "1.0.86",
3
+ "version": "1.0.88",
4
4
  "description": "a customizable value inspector",
5
5
  "url": "http://github.com/jorisroling/yves",
6
6
  "repository": {
@@ -26,10 +26,10 @@
26
26
  }
27
27
  ],
28
28
  "license": "MIT",
29
- "main": "./lib/yves",
29
+ "main": "./lib/yves.js",
30
30
  "scripts": {
31
31
  "test": "DEBUG=* node test/*-test.js",
32
- "build": "browserify --standalone yves . > dist/yves.js",
32
+ "build": "browserify -p esmify --standalone yves . > dist/yves.js",
33
33
  "lint": "eslint .",
34
34
  "prepublish": "npm run build"
35
35
  },
@@ -44,11 +44,11 @@
44
44
  "debug": "^4.3.4",
45
45
  "deep-sort-object": "^1.0.2",
46
46
  "jsonc": "^2.0.0",
47
- "pkginfo": "^0.4.1",
48
- "supports-color": "^8.1.1"
47
+ "pkginfo": "^0.4.1"
49
48
  },
50
49
  "devDependencies": {
51
50
  "browserify": "^17.0.0",
52
- "eslint": "^8.33.0"
51
+ "eslint": "^8.33.0",
52
+ "esmify": "^2.1.1"
53
53
  }
54
54
  }