Commit d5a1f18 1 parent 85b1a54 commit d5a1f18 Copy full SHA for d5a1f18
File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## aperture-7
4
+
5
+ * Allow resolving package.json within packages
6
+
7
+ Enables the following type of import:
8
+
9
+ ``` ts
10
+ const pkg = require (' @mantine/core/package.json' );
11
+ ```
12
+
13
+ This is used to access the contents of package .json which is usually not
14
+ exported by any of the exports within the package .json .
15
+
16
+ * Defer log constructor now accepts log level
17
+
18
+ The NewDeferLog constructor defaults to LogLevelInfo regardless of the log level
19
+ specified in the bundler options . We should instead inherit the log level from
20
+ the parent logger so that we don ' t drop debug messages.
21
+
22
+ Add a new logLevel parameter to NewDeferLog . Updated all locations where
23
+ NewDeferLog is called to either pass the parent logger level or to pass the old
24
+ default value of LogLevelInfo if there is no parent logger .
25
+
26
+ * Fork to aperturerobotics / esbuild
27
+
28
+ Main changes :
29
+
30
+ - Support go1 .20 and Node .JS 21 primarily
31
+ - Allow resolving package .json within any package
32
+ - Add renovate ci
33
+ - Other tweaks & fixes
34
+
3
35
## 0.19 .11
4
36
5
37
* Fix TypeScript - specific class transform edge case ([#3559](https :// github.com/evanw/esbuild/issues/3559))
Original file line number Diff line number Diff line change 1
- 0.19.11
1
+ aperture-7
You can’t perform that action at this time.
0 commit comments