@burdenoff/microfe-export 2026.715.2 → 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 +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/microfe-export",
3
- "version": "2026.715.2",
3
+ "version": "2026.731.1",
4
4
  "description": "Burdenoff Export Microfrontend - Data export management interface",
5
5
  "type": "module",
6
6
  "files": [
@@ -22,12 +22,12 @@
22
22
  "types": "./dist/index.d.ts",
23
23
  "scripts": {
24
24
  "dev": "vite",
25
- "build": "tsc && MFE_DTS=1 vite build",
25
+ "build": "tsc && MFE_DTS=1 bash scripts/build-limits.sh --gate vite build",
26
26
  "lint": "eslint .",
27
27
  "lint:sanity": "if [ \"${CI:-}\" = \"true\" ]; then bun run lint; else bun run lint -- --cache --cache-location .eslintcache; fi",
28
28
  "format": "prettier --write \"src/**/*.{ts,tsx}\"",
29
- "type:check": "tsc --noEmit",
30
- "sanity": "bun run codegen && bun run lint:sanity && bun run format && bun run type:check && bun run build",
29
+ "type:check": "bash scripts/build-limits.sh tsc --noEmit",
30
+ "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 build'",
31
31
  "schema:pull": "graphql-codegen --project schema-wspace && graphql-codegen --project schema-global",
32
32
  "codegen": "graphql-codegen --project wspace && graphql-codegen --project global",
33
33
  "codegen:all": "bun run schema:pull && bun run codegen",