@autoguru/eslint-plugin 2.0.0 → 2.0.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 +11 -0
- package/configs/base/import.js +1 -0
- package/flat-config.mjs +1 -0
- package/package.json +3 -2
- package/readme.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @autoguru/eslint-plugin
|
|
2
2
|
|
|
3
|
+
## 2.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 31133ad: Migrate monorepo tooling from Yarn to Bun
|
|
8
|
+
- Replace `find-yarn-workspace-root` with a built-in workspace root resolver
|
|
9
|
+
in gdu
|
|
10
|
+
- Update Yarn CLI references to Bun across documentation and build scripts
|
|
11
|
+
- Add `.macro` extension to ESLint import resolution config
|
|
12
|
+
- Update browserslist browser version snapshot
|
|
13
|
+
|
|
3
14
|
## 2.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
package/configs/base/import.js
CHANGED
package/flat-config.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autoguru/eslint-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "AutoGuru's shareable eslint config and custom plugins",
|
|
5
5
|
"homepage": "https://github.com/autoguru-au/octane/tree/master/packages/eslint-plugin#readme",
|
|
6
6
|
"repository": "https://github.com/autoguru-au/octane/tree/master/packages/eslint-plugin",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"eslint": ">=7"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
|
-
"access": "public"
|
|
39
|
+
"access": "public",
|
|
40
|
+
"provenance": true
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@types/eslint": "^9.6.1",
|