From f7ed06b75719b63d2670ed772db1caec8a7b2752 Mon Sep 17 00:00:00 2001 From: Daniil Sapa Date: Wed, 4 Sep 2024 01:17:01 +0300 Subject: [PATCH] Fix the migration guide --- MIGRATION_GUIDE.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md index ada3fc1..2d7a50e 100644 --- a/MIGRATION_GUIDE.md +++ b/MIGRATION_GUIDE.md @@ -41,7 +41,7 @@ export default defineConfig({ rules: { 'public-api': 'off', 'ambiguous-slice-names': 'off', - 'nonexisting-rule': 'off', + 'no-processes': 'off', }, }) ``` @@ -59,7 +59,7 @@ export default defineConfig([ rules: { 'fsd/public-api': 'off', 'fsd/ambiguous-slice-names': 'off', - 'nonexisting-rule': 'off', + 'fsd/no-processes': 'off', }, }, ]) @@ -72,17 +72,17 @@ export default defineConfig([ **pnpm**: ```shell -pnpx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/codemod/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js +pnpx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js ``` **yarn**: ```shell -yarn dlx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/codemod/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js +yarn dlx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js ``` **npm**: ```shell -npx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/codemod/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js +npx jscodeshift -t https://raw.githubusercontent.com/feature-sliced/steiger/master/packages/steiger/migrations/convert-config-to-flat.js steiger.config.js ```