@decimalturn/toml-patch 0.3.3 → 0.3.7
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/README.md +10 -1
- package/dist/toml-patch.cjs.min.js +1 -1
- package/dist/toml-patch.cjs.min.js.map +1 -1
- package/dist/toml-patch.d.ts +28 -1
- package/dist/toml-patch.es.js +28 -1
- package/dist/toml-patch.umd.min.js +1 -1
- package/dist/toml-patch.umd.min.js.map +1 -1
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decimalturn/toml-patch",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"contributors": [
|
|
5
5
|
"Tim Hall <tim.hall.engr@gmail.com>",
|
|
6
6
|
"Martin Leduc <31558169+DecimalTurn@users.noreply.github.com>"
|
|
7
7
|
],
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"description": "Patch, parse, and stringify TOML",
|
|
9
|
+
"description": "Patch, parse, and stringify TOML while preserving comments.",
|
|
10
10
|
"homepage": "https://github.com/DecimalTurn/toml-patch",
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@rollup/plugin-terser": "^0.4.4",
|
|
37
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
37
38
|
"@types/dedent": "^0.7.2",
|
|
38
|
-
"@types/glob": "^
|
|
39
|
-
"@types/jest": "^
|
|
39
|
+
"@types/glob": "^9.0.0",
|
|
40
|
+
"@types/jest": "^29.0.0",
|
|
40
41
|
"@types/js-yaml": "^3",
|
|
41
42
|
"benchmark": "^2",
|
|
42
43
|
"dedent": "^1.5.3",
|
|
43
|
-
"glob": "^
|
|
44
|
+
"glob": "^11.0.0",
|
|
44
45
|
"jest": "^29.7.0",
|
|
45
46
|
"js-yaml": "^3",
|
|
46
47
|
"mri": "^1",
|
|
47
|
-
"npm-run-
|
|
48
|
-
"rimraf": "^
|
|
48
|
+
"npm-run-all2": "^8.0.0",
|
|
49
|
+
"rimraf": "^6.0.0",
|
|
49
50
|
"rollup": "^4.38.0",
|
|
50
51
|
"rollup-plugin-dts": "^6.2.1",
|
|
51
52
|
"rollup-plugin-filesize": "^10",
|
|
52
|
-
"rollup-plugin-typescript": "^1",
|
|
53
53
|
"ts-jest": "^29",
|
|
54
|
-
"tslib": "^
|
|
55
|
-
"typescript": "
|
|
54
|
+
"tslib": "^2.0.0",
|
|
55
|
+
"typescript": "5.8"
|
|
56
56
|
},
|
|
57
57
|
"jest": {
|
|
58
58
|
"testEnvironment": "node",
|