@visulima/packem 1.2.0 → 1.2.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/CHANGELOG.md +12 -0
- package/LICENSE.md +1 -30
- package/README.md +1947 -0
- package/dist/cli.mjs +62 -57
- package/dist/{create-bundler.cjs → packem.cjs} +57 -52
- package/dist/{create-bundler.d.cts → packem.d.cts} +2 -2
- package/dist/{create-bundler.d.mts → packem.d.mts} +2 -2
- package/dist/{create-bundler.d.ts → packem.d.ts} +2 -2
- package/dist/{create-bundler.mjs → packem.mjs} +58 -53
- package/dist/rollup/watch.d.cts +1 -1
- package/dist/rollup/watch.d.mts +1 -1
- package/dist/rollup/watch.d.ts +1 -1
- package/package.json +31 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## @visulima/packem [1.2.2](https://github.com/visulima/packem/compare/@visulima/packem@1.2.1...@visulima/packem@1.2.2) (2024-11-04)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* updated dependencies of @visulima/*,@babel/parser,jiti,rollup and tinyglobby ([46b8837](https://github.com/visulima/packem/commit/46b8837ab0876cdcacbde27ab2012c75b6a09b2f))
|
|
6
|
+
|
|
7
|
+
## @visulima/packem [1.2.1](https://github.com/visulima/packem/compare/@visulima/packem@1.2.0...@visulima/packem@1.2.1) (2024-11-03)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* added missing builder run to watch, adjusted some watch text ([311b53f](https://github.com/visulima/packem/commit/311b53f3be087231568e34cb0aca657a80c188c1))
|
|
12
|
+
|
|
1
13
|
## @visulima/packem [1.2.0](https://github.com/visulima/packem/compare/@visulima/packem@1.1.1...@visulima/packem@1.2.0) (2024-11-02)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/LICENSE.md
CHANGED
|
@@ -46,7 +46,7 @@ Repository: https://github.com/Rich-Harris/estree-walker
|
|
|
46
46
|
|
|
47
47
|
# Licenses of bundled types
|
|
48
48
|
The published @visulima/packem artifact additionally contains code with the following licenses:
|
|
49
|
-
Apache-2.0
|
|
49
|
+
Apache-2.0
|
|
50
50
|
|
|
51
51
|
# Bundled types:
|
|
52
52
|
## @swc/types
|
|
@@ -256,33 +256,4 @@ Repository: git+https://github.com/swc-project/swc.git
|
|
|
256
256
|
> See the License for the specific language governing permissions and
|
|
257
257
|
> limitations under the License.
|
|
258
258
|
|
|
259
|
-
---------------------------------------
|
|
260
|
-
|
|
261
|
-
## ts-essentials
|
|
262
|
-
License: MIT
|
|
263
|
-
By: Krzysztof Kaczor
|
|
264
|
-
Repository: git@github.com:ts-essentials/ts-essentials.git
|
|
265
|
-
|
|
266
|
-
> The MIT License
|
|
267
|
-
>
|
|
268
|
-
> Copyright (c) 2018-2019 Chris Kaczor (github.com/krzkaczor)
|
|
269
|
-
>
|
|
270
|
-
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
271
|
-
> of this software and associated documentation files (the "Software"), to deal
|
|
272
|
-
> in the Software without restriction, including without limitation the rights
|
|
273
|
-
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
274
|
-
> copies of the Software, and to permit persons to whom the Software is
|
|
275
|
-
> furnished to do so, subject to the following conditions:
|
|
276
|
-
>
|
|
277
|
-
> The above copyright notice and this permission notice shall be included in
|
|
278
|
-
> all copies or substantial portions of the Software.
|
|
279
|
-
>
|
|
280
|
-
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
281
|
-
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
282
|
-
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
283
|
-
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
284
|
-
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
285
|
-
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
286
|
-
> THE SOFTWARE.
|
|
287
|
-
|
|
288
259
|
<!-- /TYPE_DEPENDENCIES -->
|