@zthun/romulator-scrape 1.8.0 → 1.11.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.11.0](https://github.com/zthun/romulator/compare/v1.10.0...v1.11.0) (2025-10-25)
7
+
8
+ **Note:** Version bump only for package @zthun/romulator-scrape
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.10.0](https://github.com/zthun/romulator/compare/v1.9.0...v1.10.0) (2025-10-23)
15
+
16
+ **Note:** Version bump only for package @zthun/romulator-scrape
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.8.0](https://github.com/zthun/romulator/compare/v1.7.1...v1.8.0) (2025-10-22)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zthun/romulator-scrape",
3
- "version": "1.8.0",
3
+ "version": "1.11.0",
4
4
  "description": "Romulator scraper that can grab info and media from scrape sources",
5
5
  "author": "Anthony Bonta",
6
6
  "license": "MIT",
@@ -17,17 +17,17 @@
17
17
  "access": "public"
18
18
  },
19
19
  "dependencies": {
20
- "@zthun/romulator-client": "^1.8.0"
20
+ "@zthun/romulator-client": "^1.11.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^24.9.1",
24
- "@zthun/janitor-build-config": "^19.4.0",
24
+ "@zthun/janitor-build-config": "^19.4.1",
25
25
  "history": "^5.3.0",
26
26
  "lodash-es": "^4.17.21",
27
27
  "typescript": "^5.9.3",
28
- "vite": "^7.1.11",
29
- "vitest": "^3.2.4",
28
+ "vite": "^7.1.12",
29
+ "vitest": "^4.0.3",
30
30
  "vitest-mock-extended": "^3.1.0"
31
31
  },
32
- "gitHead": "8226acacacdd44e65e7f63564c89118e727a66d8"
32
+ "gitHead": "0bdf3fa128737f52824cd317345514d07a12260a"
33
33
  }
package/vite.config.mts CHANGED
@@ -1,5 +1,10 @@
1
- import { ZViteConfigBuilder } from "@zthun/janitor-build-config/vite";
1
+ import {
2
+ ZViteConfigBuilder,
3
+ ZViteTestBuilder,
4
+ } from "@zthun/janitor-build-config/vite";
2
5
  import { defineConfig } from "vite";
3
6
 
4
- const config = new ZViteConfigBuilder().cli().lodash().build();
7
+ const test = new ZViteTestBuilder().node().build();
8
+ const config = new ZViteConfigBuilder().cli().test(test).build();
9
+
5
10
  export default defineConfig(config);
package/vitest.config.mts DELETED
@@ -1,9 +0,0 @@
1
- import {
2
- ZViteConfigBuilder,
3
- ZViteTestBuilder,
4
- } from "@zthun/janitor-build-config/vite";
5
- import { defineConfig } from "vite";
6
-
7
- const test = new ZViteTestBuilder().node().build();
8
- const config = new ZViteConfigBuilder().test(test).build();
9
- export default defineConfig(config);