@burdenoff/microfe-billing 2026.729.1 → 2026.731.1

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.
Files changed (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/microfe-billing",
3
- "version": "2026.729.1",
3
+ "version": "2026.731.1",
4
4
  "description": "Billing microfrontend for Burdenoff products",
5
5
  "type": "module",
6
6
  "files": [
@@ -22,7 +22,7 @@
22
22
  "types": "./dist/index.d.ts",
23
23
  "scripts": {
24
24
  "dev": "vite",
25
- "build": "tsc && vite build",
25
+ "build": "tsc && bash scripts/build-limits.sh --gate vite build",
26
26
  "schema:pull": "graphql-codegen --project schema-wspace && graphql-codegen --project schema-global",
27
27
  "codegen": "graphql-codegen --project wspace && graphql-codegen --project global",
28
28
  "codegen:all": "bun run schema:pull && bun run codegen",
@@ -30,11 +30,11 @@
30
30
  "lint:sanity": "if [ \"${CI:-}\" = \"true\" ]; then bun run lint; else bun run lint -- --cache --cache-location .eslintcache; fi",
31
31
  "format": "prettier --write \"src/**/*.{ts,tsx}\"",
32
32
  "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
33
- "type:check": "tsc --noEmit",
34
- "test": "vitest run",
33
+ "type:check": "bash scripts/build-limits.sh tsc --noEmit",
34
+ "test": "bash scripts/build-limits.sh vitest run",
35
35
  "test:watch": "vitest",
36
- "test:coverage": "vitest run --coverage",
37
- "sanity": "bun run codegen && bun run lint:sanity && bun run format && bun run type:check && bun run test && bun run build",
36
+ "test:coverage": "bash scripts/build-limits.sh vitest run --coverage",
37
+ "sanity": "bash scripts/build-limits.sh --gate bash -c 'bun run codegen && bun run lint:sanity && bun run format && bun run type:check && bun run test && bun run build'",
38
38
  "switch:status": "bun scripts/deps-mode.ts status",
39
39
  "switch:remote": "bun scripts/deps-mode.ts remote",
40
40
  "switch:local": "bun scripts/deps-mode.ts local",