jssm 5.72.4 → 5.72.5

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.
@@ -22,6 +22,12 @@ module.exports = {
22
22
  },
23
23
  },
24
24
 
25
- collectCoverageFrom: ["src/ts/**/{!(jssm-dot),}.{js,ts}"]
25
+ collectCoverageFrom: ["src/ts/**/{!(jssm-dot),}.{js,ts}"],
26
+
27
+ reporters: [
28
+ ['default', {}],
29
+ ['jest-json-reporter2', { outputDir: './coverage/spec', outputFile: 'metrics.json', fullOutput: false }],
30
+ // ['jest-json-reporter2', { outputDir: './coverage/spec', outputFile: 'extended-metrics.json', fullOutput: true }],
31
+ ]
26
32
 
27
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jssm",
3
- "version": "5.72.4",
3
+ "version": "5.72.5",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },
@@ -47,7 +47,7 @@
47
47
  "audit": "text_audit -r -t major MAJOR wasteful WASTEFUL any mixed fixme FIXME checkme CHECKME testme TESTME stochable STOCHABLE todo TODO comeback COMEBACK whargarbl WHARGARBL -g ./src/ts/**/*.{js,ts}",
48
48
  "vet": "npm run eslint && npm run audit",
49
49
  "benny": "node ./src/buildjs/benchmark.js",
50
- "build": "npm run vet && npm run test && npm run site && npm run changelog && npm run docs",
50
+ "build": "npm run vet && npm run test && npm run site && npm run changelog && npm run docs && npm run readme",
51
51
  "clean_bench": "npm run test && npm run benny",
52
52
  "qbuild": "npm run test",
53
53
  "ci_build": "npm run vet && npm run test",
@@ -56,6 +56,7 @@
56
56
  "min_cjs": "mv dist/jssm.es5.cjs.js dist/jssm.es5.cjs.nonmin.js && terser dist/jssm.es5.cjs.nonmin.js > dist/jssm.es5.cjs.js",
57
57
  "site": "cp src/site/* docs/ && cp -r src/assets docs/assets/",
58
58
  "docs": "typedoc src/ts/jssm.ts --options typedoc-options.js",
59
+ "readme": "rm ./README.md && node ./src/buildjs/make_readme.js",
59
60
  "changelog": "rm -f CHANGELOG.md && rm -f ./src/doc_md/CHANGELOG.md && better_git_changelog -b && cp CHANGELOG.* ./src/doc_md/"
60
61
  },
61
62
  "repository": {
@@ -119,6 +120,7 @@
119
120
  "fast-check": "^2.12.0",
120
121
  "glob": "^7.1.6",
121
122
  "jest": "^27.3.1",
123
+ "jest-json-reporter2": "^1.1.0",
122
124
  "pegjs": "^0.10.0",
123
125
  "rollup": "^2.72.1",
124
126
  "semver": "^5.7.1",