thaw 6.0.1 → 6.0.2

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 (1) hide show
  1. package/package.json +6 -5
package/package.json CHANGED
@@ -12,9 +12,10 @@
12
12
  "@babel/cli": "^7.28.6",
13
13
  "@babel/core": "^7.29.0",
14
14
  "@babel/preset-env": "^7.29.0",
15
+ "@eslint/markdown": "^7.5.1",
15
16
  "c8": "^10.1.3",
16
- "eslint": "^10.0.0",
17
- "eslint-config-ultra-refined": "^4.0.1",
17
+ "eslint": "^10.0.1",
18
+ "eslint-config-ultra-refined": "^4.1.2",
18
19
  "mocha": "^11.7.5"
19
20
  },
20
21
  "engines": {
@@ -41,14 +42,14 @@
41
42
  "url": "git+https://github.com/bricss/thaw.git"
42
43
  },
43
44
  "scripts": {
44
- "build": "rm -rf dist && npx babel src --out-dir dist --out-file-extension .cjs",
45
+ "build": "rm -rf dist && npx babel src --out-dir dist --out-file-extension .cjs && sh misc.sh",
45
46
  "lint": "eslint --concurrency=auto",
46
- "prepack": "npm run build && sh misc.sh && npm run lint",
47
+ "prepack": "npm run build && npm run lint",
47
48
  "pretest": "rm -rf coverage",
48
49
  "test": "mocha",
49
50
  "test:bail": "mocha --bail",
50
51
  "test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
51
52
  },
52
53
  "type": "module",
53
- "version": "6.0.1"
54
+ "version": "6.0.2"
54
55
  }