dcmjs 0.25.0 → 0.26.0
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/.eslintrc.json +9 -9
- package/.prettierrc +2 -1
- package/.vscode/settings.json +6 -1
- package/README.md +4 -1
- package/build/dcmjs.es.js +2945 -797
- package/build/dcmjs.es.js.map +1 -1
- package/build/dcmjs.js +2949 -801
- package/build/dcmjs.js.map +1 -1
- package/package.json +8 -7
- package/test/DICOMWEB.test.js +1 -1
- package/test/anonymizer.test.js +82 -3
- package/test/data-encoding.test.js +54 -0
- package/test/data-options.test.js +200 -0
- package/test/data.test.js +289 -155
- package/test/derivations.test.js +1 -1
- package/test/normalizers.test.js +1 -1
- package/test/rawTags.js +166 -160
- package/test/sr.test.js +1 -1
- package/test/testUtils.js +63 -0
- package/test/utilities.test.js +45 -26
- package/build/dcmje.es.js +0 -14059
- package/build/dcmje.es.js.map +0 -1
- package/test/untilTag.test.js +0 -38
package/.eslintrc.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"env": {
|
|
3
|
-
|
|
3
|
+
"browser": true,
|
|
4
4
|
"node": true,
|
|
5
5
|
"es6": true,
|
|
6
6
|
"jest": true
|
|
7
7
|
},
|
|
8
|
+
|
|
8
9
|
"extends": [
|
|
9
|
-
"eslint:recommended"
|
|
10
|
+
"eslint:recommended",
|
|
11
|
+
"prettier"
|
|
10
12
|
],
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
},
|
|
17
|
-
"parser": "babel-eslint"
|
|
13
|
+
|
|
14
|
+
"parserOptions": {
|
|
15
|
+
"ecmaVersion": 11,
|
|
16
|
+
"sourceType": "module"
|
|
17
|
+
}
|
|
18
18
|
}
|
package/.prettierrc
CHANGED
package/.vscode/settings.json
CHANGED
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ npm run build
|
|
|
68
68
|
npm test
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
## For Maintainers
|
|
71
|
+
## For Maintainers and Contributors
|
|
72
72
|
|
|
73
73
|
Publish new version automatically from commit:
|
|
74
74
|
|
|
@@ -79,6 +79,9 @@ Use the following "Commit Message Format" when drafting commit messages. If you'
|
|
|
79
79
|
Note: Be wary of `BREAKING_CHANGE` in commit message descriptions, as this can force a major version bump.
|
|
80
80
|
|
|
81
81
|
Be sure to use lower case for the first letter of your semantic commit message, so use `fix` not `Fix` or `feat` not `Feat`.
|
|
82
|
+
|
|
83
|
+
### Optional Tooling
|
|
84
|
+
|
|
82
85
|
It is advised to use the git-cz, i.e.:
|
|
83
86
|
|
|
84
87
|
- install git-cz
|