Skip to content

Commit 46df762

Browse files
authored
chore(repo): consistent plugin names in docs (#1657)
docs: consistent plugin names
1 parent 33174f9 commit 46df762

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/inject/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default function inject(options) {
9696
} catch (err) {
9797
this.warn({
9898
code: 'PARSE_ERROR',
99-
message: `rollup-plugin-inject: failed to parse ${id}. Consider restricting the plugin to particular files via options.include`
99+
message: `@rollup/plugin-inject: failed to parse ${id}. Consider restricting the plugin to particular files via options.include`
100100
});
101101
}
102102
if (!ast) {

packages/pluginutils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Attaches `Scope` objects to the relevant nodes of an AST. Each `Scope` object ha
6464
Parameters: `(ast: Node, propertyName?: String)`<br>
6565
Returns: `Object`
6666

67-
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.
67+
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.
6868

6969
```js
7070
import { attachScopes } from '@rollup/pluginutils';

packages/typescript/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default {
6363
}
6464
```
6565

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

6868
### `exclude`
6969

packages/virtual/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"author": "Rich Harris",
1414
"homepage": "https://github.com/rollup/plugins/tree/master/packages/virtual#readme",
15-
"bugs": "https://github.com/rollup/rollup-plugin-virtual/issues",
15+
"bugs": "https://github.com/rollup/plugins/issues",
1616
"main": "./dist/cjs/index.js",
1717
"module": "./dist/es/index.js",
1818
"exports": {

0 commit comments

Comments
 (0)