@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 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
@@ -34,6 +34,7 @@ module.exports = {
34
34
  graphql: 'always',
35
35
  treat: 'always',
36
36
  scss: 'always',
37
+ macro: 'always',
37
38
  },
38
39
  ],
39
40
  'import/no-duplicates': 'error',
package/flat-config.mjs CHANGED
@@ -56,6 +56,7 @@ export const imports = [
56
56
  'never',
57
57
  {
58
58
  graphql: 'always',
59
+ macro: 'always',
59
60
  },
60
61
  ],
61
62
  'import/no-duplicates': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autoguru/eslint-plugin",
3
- "version": "2.0.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",
package/readme.md CHANGED
@@ -3,7 +3,7 @@
3
3
  ## Usage
4
4
 
5
5
  ```sh
6
- yarn add --dev @autoguru/eslint-plugin \
6
+ bun add --dev @autoguru/eslint-plugin \
7
7
  eslint
8
8
  ```
9
9