@synergyerp/frontend-standards 1.5.3 → 1.5.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.
Files changed (2) hide show
  1. package/eslint.config.js +4 -4
  2. package/package.json +1 -1
package/eslint.config.js CHANGED
@@ -261,10 +261,10 @@ export default tseslint.config(
261
261
  {
262
262
  default: 'disallow',
263
263
  rules: [
264
- { from: 'employee', to: 'shared' },
265
- { from: 'auth', to: 'shared' },
266
- { from: 'users', to: 'shared' },
267
- { from: 'shared', to: 'shared' },
264
+ { from: 'employee', to: 'shared', allow: true },
265
+ { from: 'auth', to: 'shared', allow: true },
266
+ { from: 'users', to: 'shared', allow: true },
267
+ { from: 'shared', to: 'shared', allow: true },
268
268
  ],
269
269
  },
270
270
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synergyerp/frontend-standards",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "SynergyERP frontend standards — ESLint, Prettier, commitlint, Husky, Vitest, TypeScript configs, modularization enforcement, and PR templates.",
5
5
  "private": false,
6
6
  "type": "module",