@tanem/svg-injector 11.3.0 → 11.3.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.
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanem/svg-injector",
|
|
3
|
-
"version": "11.3.
|
|
3
|
+
"version": "11.3.2",
|
|
4
4
|
"description": "Fast, caching, dynamic inline SVG DOM injection library.",
|
|
5
5
|
"author": "Tane Morgan (https://github.com/tanem)",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,9 +32,6 @@
|
|
|
32
32
|
"content-type": "^1.0.5",
|
|
33
33
|
"tslib": "^2.8.1"
|
|
34
34
|
},
|
|
35
|
-
"overrides": {
|
|
36
|
-
"tar": "7.5.7"
|
|
37
|
-
},
|
|
38
35
|
"devDependencies": {
|
|
39
36
|
"@babel/core": "7.29.0",
|
|
40
37
|
"@babel/plugin-transform-runtime": "7.29.0",
|
|
@@ -47,7 +44,7 @@
|
|
|
47
44
|
"@rollup/plugin-commonjs": "29.0.0",
|
|
48
45
|
"@rollup/plugin-node-resolve": "16.0.3",
|
|
49
46
|
"@rollup/plugin-replace": "6.0.3",
|
|
50
|
-
"@rollup/plugin-terser": "0.
|
|
47
|
+
"@rollup/plugin-terser": "1.0.0",
|
|
51
48
|
"@types/content-type": "1.1.9",
|
|
52
49
|
"@types/node": "25.2.3",
|
|
53
50
|
"@typescript-eslint/eslint-plugin": "8.56.0",
|
|
@@ -61,8 +58,8 @@
|
|
|
61
58
|
"istanbul-reports": "3.2.0",
|
|
62
59
|
"npm-run-all2": "8.0.4",
|
|
63
60
|
"prettier": "3.8.1",
|
|
64
|
-
"rollup": "4.
|
|
65
|
-
"
|
|
61
|
+
"rollup": "4.59.0",
|
|
62
|
+
"serve": "14.2.6",
|
|
66
63
|
"shx": "0.4.0",
|
|
67
64
|
"tanem-scripts": "8.0.2",
|
|
68
65
|
"typescript": "5.9.3"
|
|
@@ -82,8 +79,11 @@
|
|
|
82
79
|
"lint": "eslint .",
|
|
83
80
|
"postbundle": "npm run clean:compiled && shx cp ./index.js ./dist/index.js",
|
|
84
81
|
"release": "tanem-scripts release",
|
|
85
|
-
"test": "run-s check:* lint build test:playwright",
|
|
82
|
+
"test": "run-s check:* lint build test:playwright build:examples test:examples:playwright",
|
|
86
83
|
"test:coverage": "run-s clean:coverage-data check:* lint build:coverage test:playwright:coverage report:coverage",
|
|
84
|
+
"test:examples": "run-s build build:examples test:examples:playwright",
|
|
85
|
+
"build:examples": "node scripts/build-examples.js",
|
|
86
|
+
"test:examples:playwright": "playwright test --config playwright.examples.config.ts",
|
|
87
87
|
"test:playwright": "playwright test",
|
|
88
88
|
"test:playwright:coverage": "COVERAGE=1 playwright test",
|
|
89
89
|
"build:coverage": "COVERAGE=1 run-s clean compile bundle",
|