@visulima/packem 1.0.0-alpha.6 → 1.0.0-alpha.60
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 +395 -0
- package/LICENSE.md +1 -1
- package/README.md +16 -3
- package/dist/cli.mjs +114 -1
- package/dist/config.cjs +1 -1
- package/dist/config.d.cts +6 -5
- package/dist/config.d.mts +6 -5
- package/dist/config.d.ts +6 -5
- package/dist/config.mjs +9 -1
- package/dist/create-bundler.cjs +65 -56
- package/dist/create-bundler.d.cts +6 -5
- package/dist/create-bundler.d.mts +6 -5
- package/dist/create-bundler.d.ts +6 -5
- package/dist/create-bundler.mjs +74 -57
- package/dist/rollup/plugins/esbuild/index.cjs +1 -1
- package/dist/rollup/plugins/esbuild/index.d.cts +1 -1
- package/dist/rollup/plugins/esbuild/index.d.mts +1 -1
- package/dist/rollup/plugins/esbuild/index.d.ts +1 -1
- package/dist/rollup/plugins/esbuild/index.mjs +2 -2
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.cjs +1 -0
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.d.cts +26 -0
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.d.mts +26 -0
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.d.ts +26 -0
- package/dist/rollup/plugins/oxc/isolated-declarations-oxc-transformer.mjs +9 -0
- package/dist/rollup/plugins/sucrase/index.cjs +1 -1
- package/dist/rollup/plugins/sucrase/index.mjs +9 -1
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.cjs +1 -0
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.d.cts +26 -0
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.d.mts +26 -0
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.d.ts +26 -0
- package/dist/rollup/plugins/swc/isolated-declarations-swc-transformer.mjs +9 -0
- package/dist/rollup/plugins/swc/{index.cjs → swc-plugin.cjs} +1 -1
- package/dist/rollup/plugins/swc/{index.d.cts → swc-plugin.d.cts} +1 -1
- package/dist/rollup/plugins/swc/{index.d.mts → swc-plugin.d.mts} +1 -1
- package/dist/rollup/plugins/swc/{index.d.ts → swc-plugin.d.ts} +1 -1
- package/dist/rollup/plugins/swc/swc-plugin.mjs +9 -0
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.cjs +1 -0
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.d.cts +27 -0
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.d.mts +27 -0
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.d.ts +27 -0
- package/dist/rollup/plugins/typescript/isolated-declarations-typescript-transformer.mjs +9 -0
- package/dist/shared/packem.0q8RrsjT.mjs +9 -0
- package/dist/shared/{packem.C44tLE3n.d.cts → packem.99scXwHP.d.cts} +34 -2
- package/dist/shared/{packem.C44tLE3n.d.mts → packem.99scXwHP.d.mts} +34 -2
- package/dist/shared/{packem.C44tLE3n.d.ts → packem.99scXwHP.d.ts} +34 -2
- package/dist/shared/{packem.D1XYCEcD.d.ts → packem.BQE1Mwim.d.ts} +30 -16
- package/dist/shared/{packem.B6x1BqsW.d.cts → packem.BmkzemMv.d.cts} +30 -16
- package/dist/shared/{packem.DbDxKBpP.d.mts → packem.CtbO2Mkx.d.mts} +30 -16
- package/dist/shared/packem.DUZi_m4G.cjs +1 -0
- package/dist/shared/{packem.D09xRBAa.d.cts → packem.Db-Z_7e-.d.cts} +1 -1
- package/dist/shared/{packem.D09xRBAa.d.mts → packem.Db-Z_7e-.d.mts} +1 -1
- package/dist/shared/{packem.D09xRBAa.d.ts → packem.Db-Z_7e-.d.ts} +1 -1
- package/dist/shared/packem.DpOIkJEJ.mjs +9 -0
- package/dist/shared/packem.NVRVuzg1.cjs +1 -0
- package/package.json +127 -81
- package/dist/cli.cjs +0 -2
- package/dist/cli.d.cts +0 -2
- package/dist/cli.d.mts +0 -2
- package/dist/cli.d.ts +0 -2
- package/dist/rollup/plugins/swc/index.mjs +0 -1
- package/dist/shared/packem.Bdmp1hC5.mjs +0 -1
- package/dist/shared/packem.Bj4QPFg7.mjs +0 -1
- package/dist/shared/packem.CEXB7aOL.cjs +0 -1
- package/dist/shared/packem.uvB0cQX0.cjs +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,398 @@
|
|
|
1
|
+
## @visulima/packem [1.0.0-alpha.60](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.59...@visulima/packem@1.0.0-alpha.60) (2024-07-31)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed inlining of dev deps, added test for it ([82e5c8b](https://github.com/visulima/packem/commit/82e5c8ba42268a3652b6aa3de29ebbfe1fc0503a))
|
|
6
|
+
|
|
7
|
+
## @visulima/packem [1.0.0-alpha.59](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.58...@visulima/packem@1.0.0-alpha.59) (2024-07-31)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* updated deps and fixed more tests ([10a28d1](https://github.com/visulima/packem/commit/10a28d12c9eed8a4c13237319c6b15eef6026442))
|
|
12
|
+
|
|
13
|
+
## @visulima/packem [1.0.0-alpha.58](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.57...@visulima/packem@1.0.0-alpha.58) (2024-07-30)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* fixed more tests ([5bc13a8](https://github.com/visulima/packem/commit/5bc13a8c1218fcbb783a3085f6fd193e8c590829))
|
|
18
|
+
|
|
19
|
+
## @visulima/packem [1.0.0-alpha.57](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.56...@visulima/packem@1.0.0-alpha.57) (2024-07-30)
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* fixed more tests, added new ones, fixed minification and added more logs ([6ba1dcc](https://github.com/visulima/packem/commit/6ba1dcc7fa5958f1a377e2dc67aeae1e2cf29416))
|
|
24
|
+
|
|
25
|
+
### Miscellaneous Chores
|
|
26
|
+
|
|
27
|
+
* more test work ([44052b7](https://github.com/visulima/packem/commit/44052b7137b43fa99447dd56e4de9fc93ece2153))
|
|
28
|
+
|
|
29
|
+
## @visulima/packem [1.0.0-alpha.56](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.55...@visulima/packem@1.0.0-alpha.56) (2024-07-25)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* added alias validation for better dx ([d5321e6](https://github.com/visulima/packem/commit/d5321e6a9629ae0780ad9df3ab999ca73e7c7804))
|
|
34
|
+
|
|
35
|
+
## @visulima/packem [1.0.0-alpha.55](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.54...@visulima/packem@1.0.0-alpha.55) (2024-07-20)
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
* fixed cjs bundling, fixed broken state if typescript is not installed, fixed some tests ([7771424](https://github.com/visulima/packem/commit/777142446de68d81108d8d4154a0ab66c0725a60))
|
|
40
|
+
|
|
41
|
+
## @visulima/packem [1.0.0-alpha.54](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.53...@visulima/packem@1.0.0-alpha.54) (2024-07-19)
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* fixed some tests, allowed to have typescript optional ([0b72a91](https://github.com/visulima/packem/commit/0b72a91809e1a0a2082cf79675c413db5c65be1b))
|
|
46
|
+
|
|
47
|
+
## @visulima/packem [1.0.0-alpha.53](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.52...@visulima/packem@1.0.0-alpha.53) (2024-07-18)
|
|
48
|
+
|
|
49
|
+
### Features
|
|
50
|
+
|
|
51
|
+
* added isolated declarations transformer based on typescript, and fixed the plugin ([6bec80b](https://github.com/visulima/packem/commit/6bec80b5555beaa8812a78b5ab6f1a16010dd4fd))
|
|
52
|
+
|
|
53
|
+
## @visulima/packem [1.0.0-alpha.52](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.51...@visulima/packem@1.0.0-alpha.52) (2024-07-18)
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* added isolated declarations transformer, added check for peerDependenciesMeta ([8f7ba0d](https://github.com/visulima/packem/commit/8f7ba0d8a52afa6dad9a67ee5cee82096748600c))
|
|
58
|
+
|
|
59
|
+
## @visulima/packem [1.0.0-alpha.51](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.50...@visulima/packem@1.0.0-alpha.51) (2024-07-17)
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* stop delete on source folder, added decorator to swc, removed custom error ([449f93c](https://github.com/visulima/packem/commit/449f93ccd2e3174a7161dc96976bfe537817586b))
|
|
64
|
+
|
|
65
|
+
## @visulima/packem [1.0.0-alpha.50](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.49...@visulima/packem@1.0.0-alpha.50) (2024-07-17)
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
* improved splitting of esm and cjs files based on input ([1a87180](https://github.com/visulima/packem/commit/1a87180a48be21fdf66b9dcb020623eb1684a669))
|
|
70
|
+
|
|
71
|
+
## @visulima/packem [1.0.0-alpha.49](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.48...@visulima/packem@1.0.0-alpha.49) (2024-07-09)
|
|
72
|
+
|
|
73
|
+
### Bug Fixes
|
|
74
|
+
|
|
75
|
+
* improved error display ([870e67a](https://github.com/visulima/packem/commit/870e67ab49e00f7a80db14044a19116e66a58f9c))
|
|
76
|
+
|
|
77
|
+
## @visulima/packem [1.0.0-alpha.48](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.47...@visulima/packem@1.0.0-alpha.48) (2024-07-09)
|
|
78
|
+
|
|
79
|
+
### Bug Fixes
|
|
80
|
+
|
|
81
|
+
* improved error display ([c5815be](https://github.com/visulima/packem/commit/c5815be6af64b8be517e43fed498c0d1c7d8a79d))
|
|
82
|
+
|
|
83
|
+
## @visulima/packem [1.0.0-alpha.47](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.46...@visulima/packem@1.0.0-alpha.47) (2024-07-09)
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* updated dep of packem ([5cb9cd5](https://github.com/visulima/packem/commit/5cb9cd52a1dc3619caa1cf58dba0aa86604ed1f4))
|
|
88
|
+
|
|
89
|
+
## @visulima/packem [1.0.0-alpha.46](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.45...@visulima/packem@1.0.0-alpha.46) (2024-06-26)
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* improved logger, moved code from function into cli ([a2fc9a8](https://github.com/visulima/packem/commit/a2fc9a84e4215613b65e97bd89c862ed528c859a))
|
|
94
|
+
|
|
95
|
+
## @visulima/packem [1.0.0-alpha.45](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.44...@visulima/packem@1.0.0-alpha.45) (2024-06-25)
|
|
96
|
+
|
|
97
|
+
### Features
|
|
98
|
+
|
|
99
|
+
* fixed some tests, add mapping of cjs and mjs to cts and mts, no exit is used inside the functions ([a7169c0](https://github.com/visulima/packem/commit/a7169c03b4f235b16206cca68ea2bb9ecbaa463f))
|
|
100
|
+
|
|
101
|
+
## @visulima/packem [1.0.0-alpha.44](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.43...@visulima/packem@1.0.0-alpha.44) (2024-06-20)
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* fixed watch run ([5237cd5](https://github.com/visulima/packem/commit/5237cd5bdfb3c3719ecb19a281e28265411c8fad))
|
|
106
|
+
|
|
107
|
+
## @visulima/packem [1.0.0-alpha.43](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.42...@visulima/packem@1.0.0-alpha.43) (2024-06-20)
|
|
108
|
+
|
|
109
|
+
### Bug Fixes
|
|
110
|
+
|
|
111
|
+
* updated the packages and fixed breaking changes ([019d53a](https://github.com/visulima/packem/commit/019d53a9b2e0a26e232af92474622fa5a1052218))
|
|
112
|
+
|
|
113
|
+
## @visulima/packem [1.0.0-alpha.42](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.41...@visulima/packem@1.0.0-alpha.42) (2024-06-14)
|
|
114
|
+
|
|
115
|
+
### Bug Fixes
|
|
116
|
+
|
|
117
|
+
* updated [@visulima](https://github.com/visulima) packages inside packem ([2225974](https://github.com/visulima/packem/commit/2225974a1f186c54669971269c8dafe331d03a8c))
|
|
118
|
+
|
|
119
|
+
### Miscellaneous Chores
|
|
120
|
+
|
|
121
|
+
* added conventional-changelog-conventionalcommits as dev dep ([9e462a2](https://github.com/visulima/packem/commit/9e462a24766313e49ed25ecde8eb64ddc978b60b))
|
|
122
|
+
|
|
123
|
+
## @visulima/packem [1.0.0-alpha.41](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.40...@visulima/packem@1.0.0-alpha.41) (2024-06-05)
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
### Bug Fixes
|
|
127
|
+
|
|
128
|
+
* improved caching ([a56b5cb](https://github.com/visulima/packem/commit/a56b5cb1a1ebcb5ed4afffef73dea273f8c8c73a))
|
|
129
|
+
|
|
130
|
+
## @visulima/packem [1.0.0-alpha.40](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.39...@visulima/packem@1.0.0-alpha.40) (2024-06-04)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### Bug Fixes
|
|
134
|
+
|
|
135
|
+
* text changes ([cc0005e](https://github.com/visulima/packem/commit/cc0005e7f45211a54ca9363dab1f3e83a5e4709c))
|
|
136
|
+
|
|
137
|
+
## @visulima/packem [1.0.0-alpha.39](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.38...@visulima/packem@1.0.0-alpha.39) (2024-06-04)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Features
|
|
141
|
+
|
|
142
|
+
* more improvements ([b1a1013](https://github.com/visulima/packem/commit/b1a10136d2b7b275b78910b0d6c5e11c1b262b1b))
|
|
143
|
+
|
|
144
|
+
## @visulima/packem [1.0.0-alpha.38](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.37...@visulima/packem@1.0.0-alpha.38) (2024-06-03)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Features
|
|
148
|
+
|
|
149
|
+
* improved auto preset handling, split the builder based on evn and runtime ([6d92a3b](https://github.com/visulima/packem/commit/6d92a3bebd3916bb008aa862164740f520017f8f))
|
|
150
|
+
|
|
151
|
+
## @visulima/packem [1.0.0-alpha.37](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.36...@visulima/packem@1.0.0-alpha.37) (2024-06-02)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Bug Fixes
|
|
155
|
+
|
|
156
|
+
* disabled cjs ([8c714e6](https://github.com/visulima/packem/commit/8c714e653669efa07250122b84fe200c103d81a0))
|
|
157
|
+
|
|
158
|
+
## @visulima/packem [1.0.0-alpha.36](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.35...@visulima/packem@1.0.0-alpha.36) (2024-06-02)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
### Features
|
|
162
|
+
|
|
163
|
+
* reduced complexity scope of builder ([958049a](https://github.com/visulima/packem/commit/958049a8d5fb1bc81b59a85f6373ba26b1ba0edc))
|
|
164
|
+
|
|
165
|
+
## @visulima/packem [1.0.0-alpha.35](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.34...@visulima/packem@1.0.0-alpha.35) (2024-06-02)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
* fixed path handling without ./ ([e717627](https://github.com/visulima/packem/commit/e717627a8a8bc332a54126c79653cccee1aeea3d))
|
|
171
|
+
|
|
172
|
+
## @visulima/packem [1.0.0-alpha.34](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.33...@visulima/packem@1.0.0-alpha.34) (2024-06-02)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
|
+
* optimized package.json auto resolver ([89bda92](https://github.com/visulima/packem/commit/89bda9259044a02ec629283a6152a8381ec2d4d1))
|
|
178
|
+
* optimized package.json auto resolver ([1348ada](https://github.com/visulima/packem/commit/1348ada13f778db685ddfcede9a11caca3af1a0c))
|
|
179
|
+
* optimized package.json auto resolver ([87be4ea](https://github.com/visulima/packem/commit/87be4ea19acc2dbd9c90b4b783df372aeb6cee23))
|
|
180
|
+
|
|
181
|
+
## @visulima/packem [1.0.0-alpha.33](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.32...@visulima/packem@1.0.0-alpha.33) (2024-06-01)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Features
|
|
185
|
+
|
|
186
|
+
* working on a better auto preset, changed package to esm ([1697cd2](https://github.com/visulima/packem/commit/1697cd23ae35155795c4d727a7ac3004b1eec450))
|
|
187
|
+
|
|
188
|
+
## @visulima/packem [1.0.0-alpha.32](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.31...@visulima/packem@1.0.0-alpha.32) (2024-05-31)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
### Features
|
|
192
|
+
|
|
193
|
+
* delete the cache if the cacheKey did changed based on the packagejson data ([820a564](https://github.com/visulima/packem/commit/820a5642be00ac7b1a08f05c10a924af802a8d53))
|
|
194
|
+
|
|
195
|
+
## @visulima/packem [1.0.0-alpha.31](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.30...@visulima/packem@1.0.0-alpha.31) (2024-05-31)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
* improved hashing of plugins ([2ca9377](https://github.com/visulima/packem/commit/2ca9377c82e726707881e8b06b2a56ab51ed8d06))
|
|
201
|
+
|
|
202
|
+
## @visulima/packem [1.0.0-alpha.30](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.29...@visulima/packem@1.0.0-alpha.30) (2024-05-31)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
### Bug Fixes
|
|
206
|
+
|
|
207
|
+
* fixed issue with cache dir, added auto update of lock file ([a49df8a](https://github.com/visulima/packem/commit/a49df8a093578b3c781e466b2e3d4478a9a8d01a))
|
|
208
|
+
|
|
209
|
+
## @visulima/packem [1.0.0-alpha.29](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.28...@visulima/packem@1.0.0-alpha.29) (2024-05-31)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
* added missing variable to watch ([174124b](https://github.com/visulima/packem/commit/174124b68063da42afb51ca008c542480f32c436))
|
|
215
|
+
|
|
216
|
+
## @visulima/packem [1.0.0-alpha.28](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.27...@visulima/packem@1.0.0-alpha.28) (2024-05-30)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Features
|
|
220
|
+
|
|
221
|
+
* optimized file names for the cache ([e8abc95](https://github.com/visulima/packem/commit/e8abc9569a7ed6cfca2d531a6dfb4a3e26999af8))
|
|
222
|
+
|
|
223
|
+
## @visulima/packem [1.0.0-alpha.27](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.26...@visulima/packem@1.0.0-alpha.27) (2024-05-30)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
### Features
|
|
227
|
+
|
|
228
|
+
* added plugin cache ([e77052f](https://github.com/visulima/packem/commit/e77052fe960470f55a4a5ee33efa11eed5ecd191))
|
|
229
|
+
|
|
230
|
+
## @visulima/packem [1.0.0-alpha.26](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.25...@visulima/packem@1.0.0-alpha.26) (2024-05-30)
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
### Features
|
|
234
|
+
|
|
235
|
+
* added NODE_ENV ([9c04a6f](https://github.com/visulima/packem/commit/9c04a6f0a27427d25141e03cc27679cd42b2a847))
|
|
236
|
+
|
|
237
|
+
## @visulima/packem [1.0.0-alpha.25](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.24...@visulima/packem@1.0.0-alpha.25) (2024-05-29)
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Bug Fixes
|
|
241
|
+
|
|
242
|
+
* cs fixes ([66e0149](https://github.com/visulima/packem/commit/66e014993490253f8d5a4f92c017aecddbcd8284))
|
|
243
|
+
|
|
244
|
+
## @visulima/packem [1.0.0-alpha.24](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.23...@visulima/packem@1.0.0-alpha.24) (2024-05-29)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Features
|
|
248
|
+
|
|
249
|
+
* added file cache to rollup, added support of es5 ([c6734ac](https://github.com/visulima/packem/commit/c6734ac079db193d1c88e473cf01361a728c9bdd))
|
|
250
|
+
* added option to disable cache ([9ee5cac](https://github.com/visulima/packem/commit/9ee5cacb3db1f1e59419f5a00f0f245a5be43d3a))
|
|
251
|
+
|
|
252
|
+
## @visulima/packem [1.0.0-alpha.23](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.22...@visulima/packem@1.0.0-alpha.23) (2024-05-29)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
### Bug Fixes
|
|
256
|
+
|
|
257
|
+
* removed packem from package.json. fixed test runs ([05b346a](https://github.com/visulima/packem/commit/05b346a57749147fb7f5cbd810112eaf01ec2a56))
|
|
258
|
+
|
|
259
|
+
## @visulima/packem [1.0.0-alpha.22](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.21...@visulima/packem@1.0.0-alpha.22) (2024-05-29)
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
### Bug Fixes
|
|
263
|
+
|
|
264
|
+
* fixing tests for check all functions ([786fb37](https://github.com/visulima/packem/commit/786fb378b7cbab3dbb48cdf43561485cdf5436a0))
|
|
265
|
+
|
|
266
|
+
## @visulima/packem [1.0.0-alpha.21](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.20...@visulima/packem@1.0.0-alpha.21) (2024-05-28)
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Bug Fixes
|
|
270
|
+
|
|
271
|
+
* optimized logs ([63d9d45](https://github.com/visulima/packem/commit/63d9d4557d1ae3e7eb8c85d43df9a645c2e3af57))
|
|
272
|
+
|
|
273
|
+
## @visulima/packem [1.0.0-alpha.20](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.19...@visulima/packem@1.0.0-alpha.20) (2024-05-28)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Bug Fixes
|
|
277
|
+
|
|
278
|
+
* extended logs ([984a1ea](https://github.com/visulima/packem/commit/984a1eac339f12b6683b5284325bf97d0b606334))
|
|
279
|
+
|
|
280
|
+
## @visulima/packem [1.0.0-alpha.19](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.18...@visulima/packem@1.0.0-alpha.19) (2024-05-28)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
### Bug Fixes
|
|
284
|
+
|
|
285
|
+
* fixed error handling of promises ([be3b055](https://github.com/visulima/packem/commit/be3b055d68f2544c4271d1da9899e6ea40ebdb04))
|
|
286
|
+
|
|
287
|
+
## @visulima/packem [1.0.0-alpha.18](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.17...@visulima/packem@1.0.0-alpha.18) (2024-05-28)
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
### Bug Fixes
|
|
291
|
+
|
|
292
|
+
* new debug message ([ef7db6f](https://github.com/visulima/packem/commit/ef7db6ff4af9a91372ae57241dc38a38093e5d6b))
|
|
293
|
+
|
|
294
|
+
## @visulima/packem [1.0.0-alpha.17](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.16...@visulima/packem@1.0.0-alpha.17) (2024-05-28)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
### Bug Fixes
|
|
298
|
+
|
|
299
|
+
* working on better tests ([a6a569e](https://github.com/visulima/packem/commit/a6a569e88496ac30bfebebc05c0b0f967d8810b8))
|
|
300
|
+
|
|
301
|
+
## @visulima/packem [1.0.0-alpha.16](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.15...@visulima/packem@1.0.0-alpha.16) (2024-05-28)
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
### Bug Fixes
|
|
305
|
+
|
|
306
|
+
* working on better tests ([a612717](https://github.com/visulima/packem/commit/a6127174c0368a8d5dd5c94dde0777d0a7305a90))
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
### Miscellaneous Chores
|
|
310
|
+
|
|
311
|
+
* updated readme ([637d0a8](https://github.com/visulima/packem/commit/637d0a8e63ac51071da0fc98c6f8458d0402a7ea))
|
|
312
|
+
|
|
313
|
+
## @visulima/packem [1.0.0-alpha.15](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.14...@visulima/packem@1.0.0-alpha.15) (2024-05-27)
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
### Features
|
|
317
|
+
|
|
318
|
+
* added a first version of the init command ([ab3b009](https://github.com/visulima/packem/commit/ab3b0091cb30d7632be3e6818cb76a03ecd13a4f))
|
|
319
|
+
|
|
320
|
+
## @visulima/packem [1.0.0-alpha.14](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.13...@visulima/packem@1.0.0-alpha.14) (2024-05-27)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
### Bug Fixes
|
|
324
|
+
|
|
325
|
+
* optimized the code a bit ([c644e8a](https://github.com/visulima/packem/commit/c644e8a3b1926b55c3c4038943100260bb9de811))
|
|
326
|
+
|
|
327
|
+
## @visulima/packem [1.0.0-alpha.13](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.12...@visulima/packem@1.0.0-alpha.13) (2024-05-27)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### Bug Fixes
|
|
331
|
+
|
|
332
|
+
* optimized the code with memo calls ([fe27249](https://github.com/visulima/packem/commit/fe27249d25fabcf5f2f9a8717a0fe750667475d8))
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
### Styles
|
|
336
|
+
|
|
337
|
+
* cs fixes ([44f813e](https://github.com/visulima/packem/commit/44f813e6a0f3bc787490c480eeb338530cd37ede))
|
|
338
|
+
|
|
339
|
+
## @visulima/packem [1.0.0-alpha.12](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.11...@visulima/packem@1.0.0-alpha.12) (2024-05-27)
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
### Bug Fixes
|
|
343
|
+
|
|
344
|
+
* fixed types validation ([f0f572e](https://github.com/visulima/packem/commit/f0f572ea04a001bd566371d67f3f0df2da35d09d))
|
|
345
|
+
|
|
346
|
+
## @visulima/packem [1.0.0-alpha.11](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.10...@visulima/packem@1.0.0-alpha.11) (2024-05-27)
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
* optimize config loading of types, cjs and esm ([ed4368f](https://github.com/visulima/packem/commit/ed4368f833c2e577ae78bb7a89f18075d8fde6d9))
|
|
352
|
+
|
|
353
|
+
## @visulima/packem [1.0.0-alpha.10](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.9...@visulima/packem@1.0.0-alpha.10) (2024-05-27)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
### Bug Fixes
|
|
357
|
+
|
|
358
|
+
* optimize the code a bit ([90fa3e4](https://github.com/visulima/packem/commit/90fa3e4e468a75fe9c764614473119ca6671661c))
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Styles
|
|
362
|
+
|
|
363
|
+
* cs fix ([6a77847](https://github.com/visulima/packem/commit/6a778475666bd236eb9dee56797ba969989b99fa))
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
### Code Refactoring
|
|
367
|
+
|
|
368
|
+
* optimize the code a bit ([0960712](https://github.com/visulima/packem/commit/0960712bac282a691bbf7b88c0492cf101d3e812))
|
|
369
|
+
|
|
370
|
+
## @visulima/packem [1.0.0-alpha.9](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.8...@visulima/packem@1.0.0-alpha.9) (2024-05-25)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
### Features
|
|
374
|
+
|
|
375
|
+
* added build time ([5ad7b27](https://github.com/visulima/packem/commit/5ad7b27eedd056dc1ce127ad76bcc03a52fe5d31))
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
### Miscellaneous Chores
|
|
379
|
+
|
|
380
|
+
* clean up of started node native plugin ([6b67ca9](https://github.com/visulima/packem/commit/6b67ca93299d876893028d80816defa5da27c5f0))
|
|
381
|
+
|
|
382
|
+
## @visulima/packem [1.0.0-alpha.8](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.7...@visulima/packem@1.0.0-alpha.8) (2024-05-25)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
### Bug Fixes
|
|
386
|
+
|
|
387
|
+
* removed vue examples, removed jsx preserve error ([55f5571](https://github.com/visulima/packem/commit/55f55712e021a3a4a1aa24c2026a508597a28d14))
|
|
388
|
+
|
|
389
|
+
## @visulima/packem [1.0.0-alpha.7](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.6...@visulima/packem@1.0.0-alpha.7) (2024-05-25)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Bug Fixes
|
|
393
|
+
|
|
394
|
+
* adjusted target on swc and esbuild ([5ee4937](https://github.com/visulima/packem/commit/5ee493757e5fc51945228df0ff97db77c35eac3e))
|
|
395
|
+
|
|
1
396
|
## @visulima/packem [1.0.0-alpha.6](https://github.com/visulima/packem/compare/@visulima/packem@1.0.0-alpha.5...@visulima/packem@1.0.0-alpha.6) (2024-05-25)
|
|
2
397
|
|
|
3
398
|
|
package/LICENSE.md
CHANGED
|
@@ -261,7 +261,7 @@ Repository: git+https://github.com/swc-project/swc.git
|
|
|
261
261
|
## ts-essentials
|
|
262
262
|
License: MIT
|
|
263
263
|
By: Krzysztof Kaczor
|
|
264
|
-
Repository: git@github.com:
|
|
264
|
+
Repository: git@github.com:ts-essentials/ts-essentials.git
|
|
265
265
|
|
|
266
266
|
> The MIT License
|
|
267
267
|
>
|
package/README.md
CHANGED
|
@@ -39,17 +39,30 @@ yarn add @visulima/packem
|
|
|
39
39
|
pnpm add @visulima/packem
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
### Choose you transformer
|
|
43
|
+
|
|
44
|
+
You choose which one of the three supported transformer to use.
|
|
45
|
+
|
|
46
|
+
- [esbuild](https://github.com/evanw/esbuild)
|
|
47
|
+
- [@swc/core](https://github.com/swc-project/swc)
|
|
48
|
+
- [sucrase](https://github.com/alangpierce/sucrase)
|
|
49
|
+
|
|
42
50
|
## Usage
|
|
43
51
|
|
|
44
52
|
```typescript
|
|
45
53
|
|
|
46
54
|
```
|
|
47
55
|
|
|
56
|
+
Links:
|
|
57
|
+
|
|
58
|
+
- https://github.com/frehner/modern-guide-to-packaging-js-library#set-the-main-field
|
|
59
|
+
|
|
48
60
|
## Related
|
|
49
61
|
|
|
50
62
|
- [bunchee](https://github.com/huozhi/bunchee) - Zero config bundler for ECMAScript and TypeScript packages
|
|
51
63
|
- [unbuild](https://github.com/unjs/unbuild) - 📦 An unified javascript build system
|
|
52
64
|
- [pkgroll](https://github.com/privatenumber/pkgroll) - 📦 Zero-config package bundler for Node.js + TypeScript
|
|
65
|
+
- [siroc](https://github.com/danielroe/siroc) - Zero-config build tooling for Node
|
|
53
66
|
- [tsup](https://github.com/egoist/tsup) - The simplest and fastest way to bundle your TypeScript libraries
|
|
54
67
|
|
|
55
68
|
## Supported Node.js Versions
|
|
@@ -74,7 +87,7 @@ The visulima pack is open-sourced software licensed under the [MIT][license-url]
|
|
|
74
87
|
|
|
75
88
|
[typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
|
|
76
89
|
[typescript-url]: "typescript"
|
|
77
|
-
[license-image]: https://img.shields.io/npm/l/@visulima/
|
|
90
|
+
[license-image]: https://img.shields.io/npm/l/@visulima/packem?color=blueviolet&style=for-the-badge
|
|
78
91
|
[license-url]: LICENSE.md "license"
|
|
79
|
-
[npm-image]: https://img.shields.io/npm/v/@visulima/
|
|
80
|
-
[npm-url]: https://www.npmjs.com/package/@visulima/
|
|
92
|
+
[npm-image]: https://img.shields.io/npm/v/@visulima/packem/latest.svg?style=for-the-badge&logo=npm
|
|
93
|
+
[npm-url]: https://www.npmjs.com/package/@visulima/packem/v/latest "npm"
|