Skip to content

Commit

Permalink
chore(repo): consistent plugin names in docs (#1657)
Browse files Browse the repository at this point in the history
docs: consistent plugin names
  • Loading branch information
antfu committed Dec 27, 2023
1 parent 33174f9 commit 46df762
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/inject/src/index.js
Expand Up @@ -96,7 +96,7 @@ export default function inject(options) {
} catch (err) {
this.warn({
code: 'PARSE_ERROR',
message: `rollup-plugin-inject: failed to parse ${id}. Consider restricting the plugin to particular files via options.include`
message: `@rollup/plugin-inject: failed to parse ${id}. Consider restricting the plugin to particular files via options.include`
});
}
if (!ast) {
Expand Down
2 changes: 1 addition & 1 deletion packages/pluginutils/README.md
Expand Up @@ -64,7 +64,7 @@ Attaches `Scope` objects to the relevant nodes of an AST. Each `Scope` object ha
Parameters: `(ast: Node, propertyName?: String)`<br>
Returns: `Object`

See [rollup-plugin-inject](https://github.com/rollup/rollup-plugin-inject) or [rollup-plugin-commonjs](https://github.com/rollup/rollup-plugin-commonjs) for an example of usage.
See [@rollup/plugin-inject](https://github.com/rollup/plugins/tree/master/packages/inject) or [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/master/packages/commonjs) for an example of usage.

```js
import { attachScopes } from '@rollup/pluginutils';
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript/README.md
Expand Up @@ -63,7 +63,7 @@ export default {
}
```

The following options are unique to `rollup-plugin-typescript`:
The following options are unique to `@rollup/plugin-typescript`:

### `exclude`

Expand Down
2 changes: 1 addition & 1 deletion packages/virtual/package.json
Expand Up @@ -12,7 +12,7 @@
},
"author": "Rich Harris",
"homepage": "https://github.com/rollup/plugins/tree/master/packages/virtual#readme",
"bugs": "https://github.com/rollup/rollup-plugin-virtual/issues",
"bugs": "https://github.com/rollup/plugins/issues",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"exports": {
Expand Down

0 comments on commit 46df762

Please sign in to comment.