@meduscinema/core 1.0.8 → 1.0.10

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": "@meduscinema/core",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "keywords": [],
5
5
  "author": "MedusCode",
6
6
  "license": "ISC",
@@ -17,7 +17,8 @@
17
17
  "prettier": "^3.0.0"
18
18
  },
19
19
  "exports": {
20
- "./prettier": "./src/prettier.config.mjs"
20
+ "./prettier": "./src/prettier.config.mjs",
21
+ "./eslint": "./src/eslint.config.mjs"
21
22
  },
22
23
  "devDependencies": {
23
24
  "@eslint/js": "9.x",
@@ -44,12 +44,17 @@ export default tseslint.config(
44
44
  * ======================= */
45
45
  'simple-import-sort/imports': [ 'error', {
46
46
  groups: [
47
- [ '^\\u0000' ], // side effects
48
- [ '^node:' ], // node builtins
49
- [ '^@?\\w' ], // npm packages
50
- [ '^@/' ], // aliases
47
+ [ '^\\u0000' ], // side effects
48
+ [ '^node:' ], // node builtins
49
+
50
+ [ '^@nestjs' ], // NestJS framework
51
+ [ '^@?\\w' ], // other npm packages
52
+
53
+ [ '^src/' ], // absolute internal (src/*)
54
+ [ '^@/' ], // aliases (@/*)
55
+
51
56
  [ '^\\.\\.(?!/?$)', '^\\.\\./?$' ], // parent
52
- [ '^\\./' ] // relative
57
+ [ '^\\./' ] // same-folder
53
58
  ]
54
59
  } ],
55
60
  'simple-import-sort/exports': 'error',