@comet/eslint-plugin 8.20.2 → 9.0.0-beta.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 (2) hide show
  1. package/CHANGELOG.md +12 -2
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,8 +1,18 @@
1
1
  # @comet/eslint-plugin
2
2
 
3
- ## 8.20.2
3
+ ## 9.0.0-beta.1
4
4
 
5
- ## 8.20.1
5
+ ## 9.0.0-beta.0
6
+
7
+ ### Major Changes
8
+
9
+ - db6b83a: Prevent lib imports from `@comet/` packages
10
+
11
+ Use `no-restricted-imports` to prevent importing private files from `@comet/*/lib`. For example, the following import would be forbidden:
12
+
13
+ ```ts
14
+ import { something } from "@comet/admin/lib/some/private/file";
15
+ ```
6
16
 
7
17
  ## 8.20.0
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/eslint-plugin",
3
- "version": "8.20.2",
3
+ "version": "9.0.0-beta.1",
4
4
  "description": "A set of ESLint rules and configurations for Comet projects",
5
5
  "type": "commonjs",
6
6
  "main": "lib/index.js",