@schmock/angular 1.0.2 → 1.0.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schmock/angular",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Angular HTTP interceptor adapter for Schmock",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,32 +12,29 @@
12
12
  "dev": "bun build:lib --watch",
13
13
  "clean": "rm -rf dist",
14
14
  "build": "bun run clean && bun run build:lib && bun run build:types",
15
- "build:lib": "bun build src/index.ts --outdir dist --target node --format esm",
16
- "build:types": "tsc --emitDeclarationOnly --declaration --outDir dist",
15
+ "build:lib": "bun build src/index.ts --outdir dist --target node --format esm --external @angular/common --external @angular/core --external @schmock/core --external rxjs",
16
+ "build:types": "rm -f tsconfig.tsbuildinfo && tsc --build",
17
17
  "test": "vitest run",
18
18
  "test:watch": "vitest",
19
19
  "lint": "biome check src",
20
20
  "lint:fix": "biome check --write src"
21
21
  },
22
- "dependencies": {
23
- "@schmock/core": "^1.0.0",
24
- "rxjs": "^7.8.1"
25
- },
26
22
  "peerDependencies": {
27
23
  "@angular/common": ">=15.0.0",
28
- "@angular/core": ">=15.0.0"
24
+ "@angular/core": ">=15.0.0",
25
+ "@schmock/core": "^1.0.0",
26
+ "rxjs": "^7.0.0"
29
27
  },
30
28
  "devDependencies": {
31
29
  "@angular/common": "^21.0.3",
32
30
  "@angular/compiler": "^20.3.9",
33
31
  "@angular/core": "^21.0.3",
34
-
35
32
  "@angular/platform-browser": "^20.3.9",
36
-
37
33
  "@angular/platform-browser-dynamic": "^20.3.7",
38
-
34
+ "@schmock/core": "^1.0.0",
39
35
  "@types/node": "^24.9.2",
40
36
  "jsdom": "^27.0.1",
37
+ "rxjs": "^7.8.1",
41
38
  "typescript": "^5.9.3",
42
39
  "vitest": "^4.0.5",
43
40
  "zone.js": "^0.15.1"