@rollup/plugin-node-resolve 13.0.4 → 13.0.5
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/CHANGELOG.md +12 -4
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,20 @@
|
|
1
1
|
# @rollup/plugin-node-resolve ChangeLog
|
2
2
|
|
3
|
+
## v13.0.5
|
4
|
+
|
5
|
+
_2021-09-21_
|
6
|
+
|
7
|
+
### Updates
|
8
|
+
|
9
|
+
- docs: fix readme heading depth (#999)
|
10
|
+
|
3
11
|
## v13.0.4
|
4
12
|
|
5
13
|
_2021-07-24_
|
6
14
|
|
7
15
|
### Bugfixes
|
8
16
|
|
9
|
-
- fix
|
17
|
+
- fix: Fix bug where JS import was converted to a TS import, resulting in an error when using export maps (#921)
|
10
18
|
|
11
19
|
## v13.0.3
|
12
20
|
|
@@ -14,7 +22,7 @@ _2021-07-24_
|
|
14
22
|
|
15
23
|
### Bugfixes
|
16
24
|
|
17
|
-
- fix
|
25
|
+
- fix: handle browser-mapped paths correctly in nested contexts (#920)
|
18
26
|
|
19
27
|
## v13.0.2
|
20
28
|
|
@@ -22,7 +30,7 @@ _2021-07-15_
|
|
22
30
|
|
23
31
|
### Bugfixes
|
24
32
|
|
25
|
-
- fix
|
33
|
+
- fix: handle "package.json" being in path (#927)
|
26
34
|
|
27
35
|
## v13.0.1
|
28
36
|
|
@@ -467,4 +475,4 @@ This release caches reading/statting of files, to improve speed.
|
|
467
475
|
|
468
476
|
## 0.1.0
|
469
477
|
|
470
|
-
- First release
|
478
|
+
- First release
|
package/README.md
CHANGED
@@ -159,7 +159,7 @@ Specifies the root directory from which to resolve modules. Typically used when
|
|
159
159
|
rootDir: path.join(process.cwd(), '..')
|
160
160
|
```
|
161
161
|
|
162
|
-
|
162
|
+
### `ignoreSideEffectsForRoot`
|
163
163
|
|
164
164
|
If you use the `sideEffects` property in the package.json, by default this is respected for files in the root package. Set to `true` to ignore the `sideEffects` configuration for the root package.
|
165
165
|
|