From f1721076edbb95d18af4b61f68ca61b4f49c04e6 Mon Sep 17 00:00:00 2001 From: Vlad-Shcherbina Date: Sun, 22 Dec 2019 11:08:57 +0300 Subject: [PATCH] Update deprecated references to the node-resolve plugin in the documentation (#3294) --- docs/07-tools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/07-tools.md b/docs/07-tools.md index 011716040ec..e284f0842c9 100755 --- a/docs/07-tools.md +++ b/docs/07-tools.md @@ -43,17 +43,17 @@ The resulting `bundle.js` will still work in Node.js, because the `import` decla #### rollup-plugin-node-resolve -The [rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve) plugin teaches Rollup how to find external modules. Install it… +The [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/master/packages/node-resolve) plugin teaches Rollup how to find external modules. Install it… ``` -npm install --save-dev rollup-plugin-node-resolve +npm install --save-dev @rollup/plugin-node-resolve ``` …and add it to your config file: ```js // rollup.config.js -import resolve from 'rollup-plugin-node-resolve'; +import resolve from '@rollup/plugin-node-resolve'; export default { input: 'src/main.js',