@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.
- package/CHANGELOG.md +12 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# @comet/eslint-plugin
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 9.0.0-beta.1
|
|
4
4
|
|
|
5
|
-
##
|
|
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
|
|