dcmjs 0.34.3 → 0.34.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.
- package/build/dcmjs.es.js +2 -7
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +2 -7
- package/build/dcmjs.js.map +1 -1
- package/jest.setup.js +1 -1
- package/package.json +6 -1
- package/rollup.config.mjs +34 -27
- package/test/anonymizer.test.js +1 -1
- package/test/data.test.js +2 -2
- package/test/integration/DicomMessage.readFile.test.js +1 -1
- package/test/testUtils.js +1 -1
package/build/dcmjs.es.js
CHANGED
|
@@ -366,13 +366,8 @@ var loglevel = {exports: {}};
|
|
|
366
366
|
var loglevelExports = loglevel.exports;
|
|
367
367
|
var log = /*@__PURE__*/getDefaultExportFromCjs(loglevelExports);
|
|
368
368
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
* This is validation.dcmjs to group the validation issues into a single validation set to allow
|
|
372
|
-
* turning validation on/off.
|
|
373
|
-
*/
|
|
374
|
-
var validationLog = log.create("validation.dcmjs");
|
|
375
|
-
log.setLevel(process.env.LOG_LEVEL || "warn");
|
|
369
|
+
log.setLevel("warn");
|
|
370
|
+
var validationLog = log.getLogger("validation.dcmjs");
|
|
376
371
|
|
|
377
372
|
/* eslint no-bitwise: 0 */
|
|
378
373
|
var BitArray = {
|