@burdenoff/microfe-workspaces 2026.719.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-workspaces",
3
- "version": "2026.719.1",
3
+ "version": "2026.731.1",
4
4
  "description": "Workspaces microfrontend for Burdenoff products",
5
5
  "type": "module",
6
6
  "files": [
@@ -23,16 +23,16 @@
23
23
  "types": "./dist/index.d.ts",
24
24
  "scripts": {
25
25
  "dev": "vite",
26
- "build": "tsc && vite build",
26
+ "build": "tsc && bash scripts/build-limits.sh --gate vite build",
27
27
  "lint": "eslint .",
28
28
  "lint:sanity": "if [ \"${CI:-}\" = \"true\" ]; then bun run lint; else bun run lint -- --cache --cache-location .eslintcache; fi",
29
29
  "format": "prettier --write \"src/**/*.{ts,tsx}\"",
30
30
  "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
31
- "type:check": "tsc --noEmit",
32
- "test": "vitest run",
31
+ "type:check": "bash scripts/build-limits.sh tsc --noEmit",
32
+ "test": "bash scripts/build-limits.sh vitest run",
33
33
  "test:watch": "vitest",
34
- "test:coverage": "vitest run --coverage",
35
- "sanity": "bun run codegen && bun run lint:sanity && bun run format && bun run type:check && bun run build && bun run test",
34
+ "test:coverage": "bash scripts/build-limits.sh vitest run --coverage",
35
+ "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 && bun run test'",
36
36
  "schema:pull": "graphql-codegen --project schema-wspace && graphql-codegen --project schema-global",
37
37
  "codegen": "graphql-codegen --project wspace && graphql-codegen --project global",
38
38
  "codegen:all": "bun run schema:pull && bun run codegen",