Skip to content

Commit

Permalink
docs: fix typo label to path (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudmanaranche authored Aug 24, 2023
1 parent f2f00c5 commit 5fc395a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ module.exports = {
// import {} from 'package'
index: 'src/index.tsx',
// import {} from 'package/client'
client: { file: 'src/client.tsx', label: 'Client' },
client: { path: 'src/client.tsx', label: 'Client' },
// import {} from 'package/server'
server: { file: 'src/server.tsx', label: 'Server' },
server: { path: 'src/server.tsx', label: 'Server' },
// import {} from 'package/server/test'
'server/test': { file: 'src/server/test-utils.tsx', label: 'Server test utils' },
'server/test': { path: 'src/server/test-utils.tsx', label: 'Server test utils' },
},
},
],
Expand Down

0 comments on commit 5fc395a

Please sign in to comment.