@rollup/plugin-node-resolve 15.0.0 → 15.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/index.js CHANGED
@@ -12,7 +12,7 @@ var url = require('url');
12
12
  var resolve = require('resolve');
13
13
  var pluginutils = require('@rollup/pluginutils');
14
14
 
15
- var version = "15.0.0";
15
+ var version = "15.0.2";
16
16
  var peerDependencies = {
17
17
  rollup: "^2.78.0||^3.0.0"
18
18
  };
@@ -861,8 +861,8 @@ async function resolveWithClassic({
861
861
  }
862
862
 
863
863
  // Resolves to the module if found or `null`.
864
- // The first import specificer will first be attempted with the exports algorithm.
865
- // If this is unsuccesful because export maps are not being used, then all of `importSpecifierList`
864
+ // The first import specifier will first be attempted with the exports algorithm.
865
+ // If this is unsuccessful because export maps are not being used, then all of `importSpecifierList`
866
866
  // will be tried with the classic resolution algorithm
867
867
  async function resolveImportSpecifiers({
868
868
  importer,
package/dist/es/index.js CHANGED
@@ -8,7 +8,7 @@ import { pathToFileURL, fileURLToPath } from 'url';
8
8
  import resolve$1 from 'resolve';
9
9
  import { createFilter } from '@rollup/pluginutils';
10
10
 
11
- var version = "15.0.0";
11
+ var version = "15.0.2";
12
12
  var peerDependencies = {
13
13
  rollup: "^2.78.0||^3.0.0"
14
14
  };
@@ -857,8 +857,8 @@ async function resolveWithClassic({
857
857
  }
858
858
 
859
859
  // Resolves to the module if found or `null`.
860
- // The first import specificer will first be attempted with the exports algorithm.
861
- // If this is unsuccesful because export maps are not being used, then all of `importSpecifierList`
860
+ // The first import specifier will first be attempted with the exports algorithm.
861
+ // If this is unsuccessful because export maps are not being used, then all of `importSpecifierList`
862
862
  // will be tried with the classic resolution algorithm
863
863
  async function resolveImportSpecifiers({
864
864
  importer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rollup/plugin-node-resolve",
3
- "version": "15.0.0",
3
+ "version": "15.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,21 +61,21 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@rollup/pluginutils": "^4.2.1",
64
+ "@rollup/pluginutils": "^5.0.1",
65
65
  "@types/resolve": "1.20.2",
66
66
  "deepmerge": "^4.2.2",
67
- "is-builtin-module": "^3.2.0",
67
+ "is-builtin-module": "^3.2.1",
68
68
  "is-module": "^1.0.0",
69
69
  "resolve": "^1.22.1"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@babel/core": "^7.19.1",
73
73
  "@babel/plugin-transform-typescript": "^7.10.5",
74
- "@rollup/plugin-babel": "^5.1.0",
75
- "@rollup/plugin-commonjs": "^22.0.2",
76
- "@rollup/plugin-json": "^4.1.0",
74
+ "@rollup/plugin-babel": "^6.0.0",
75
+ "@rollup/plugin-commonjs": "^23.0.0",
76
+ "@rollup/plugin-json": "^5.0.0",
77
77
  "es5-ext": "^0.10.62",
78
- "rollup": "^3.0.0-7",
78
+ "rollup": "^3.2.3",
79
79
  "source-map": "^0.7.4",
80
80
  "string-capitalize": "^1.0.1"
81
81
  },
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Plugin } from 'rollup';
1
+ import type { Plugin } from 'rollup';
2
2
 
3
3
  export const DEFAULTS: {
4
4
  customResolveOptions: {};