@visulima/packem 2.0.0-alpha.40 → 2.0.0-alpha.44
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 +37 -0
- package/LICENSE.md +1447 -1342
- package/dist/builder/typedoc/index.js +1 -1
- package/dist/cli/commands/add.d.ts +2 -1
- package/dist/cli/index.js +46 -39
- package/dist/config/preset/auto.d.ts +2 -2
- package/dist/config/preset/react.d.ts +59 -0
- package/dist/config/preset/react.js +1 -0
- package/dist/config/preset/solid.d.ts +101 -0
- package/dist/config/preset/solid.js +1 -0
- package/dist/config/preset/svelte.d.ts +71 -0
- package/dist/config/preset/svelte.js +1 -0
- package/dist/config/preset/vue.d.ts +53 -0
- package/dist/config/preset/vue.js +1 -0
- package/dist/index.js +1 -1
- package/dist/packem_shared/create-or-update-key-storage-C0tWtgSr.js +3 -0
- package/dist/packem_shared/{default-Dego_fiC.js → default-5XUc-qHw.js} +1 -1
- package/dist/packem_shared/{default-E4TiWfSK.js → default-DsjSAv7m.js} +1 -1
- package/dist/packem_shared/{esbuildPlugin-DpLtQGuZ-Bny-e486.js → esbuildPlugin-pPPsJB9N-YI_X-5wr.js} +2 -2
- package/dist/packem_shared/index-ChtiNkgT.js +174 -0
- package/dist/packem_shared/{resolveTypescriptMjsCtsPlugin-DcZrZTmM-3AmQC7y7.js → resolveTypescriptMjsCtsPlugin-DcZrZTmM-CauidYR5.js} +4 -4
- package/dist/rollup/plugins/esbuild/index.js +1 -1
- package/dist/types.d.ts +2 -1
- package/package.json +33 -6
- package/dist/packem_shared/create-or-update-key-storage-GwAIWW7R.js +0 -3
- package/dist/packem_shared/index-DFigeRU2.js +0 -174
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
## @visulima/packem [2.0.0-alpha.44](https://github.com/visulima/packem/compare/@visulima/packem@2.0.0-alpha.43...@visulima/packem@2.0.0-alpha.44) (2025-12-13)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* improve logic for checking Git status in add command ([bbb85c7](https://github.com/visulima/packem/commit/bbb85c7952221bb840f0697a4db85a4ba4a5327b))
|
|
6
|
+
|
|
7
|
+
## @visulima/packem [2.0.0-alpha.43](https://github.com/visulima/packem/compare/@visulima/packem@2.0.0-alpha.42...@visulima/packem@2.0.0-alpha.43) (2025-12-09)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update pnpm-lock.yaml and example files for consistency ([d11dd48](https://github.com/visulima/packem/commit/d11dd4868a3cb5265035897148f81dca3b33f359))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Dependencies
|
|
15
|
+
|
|
16
|
+
* **@visulima/packem-rollup:** upgraded to 1.0.0-alpha.32
|
|
17
|
+
* **@visulima/rollup-plugin-css:** upgraded to 1.0.0-alpha.12
|
|
18
|
+
|
|
19
|
+
## @visulima/packem [2.0.0-alpha.42](https://github.com/visulima/packem/compare/@visulima/packem@2.0.0-alpha.41...@visulima/packem@2.0.0-alpha.42) (2025-12-09)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* add Vue and Svelte presets with example configurations ([5d7c0eb](https://github.com/visulima/packem/commit/5d7c0ebaac1a105a863c8c92e953623398734f5b))
|
|
24
|
+
|
|
25
|
+
## @visulima/packem [2.0.0-alpha.41](https://github.com/visulima/packem/compare/@visulima/packem@2.0.0-alpha.40...@visulima/packem@2.0.0-alpha.41) (2025-12-09)
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* added preset for react and solid, added babel transformer ([773b907](https://github.com/visulima/packem/commit/773b907b462985cb61a5c978c43e227f24db6706))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Dependencies
|
|
33
|
+
|
|
34
|
+
* **@visulima/packem-rollup:** upgraded to 1.0.0-alpha.31
|
|
35
|
+
* **@visulima/packem-share:** upgraded to 1.0.0-alpha.15
|
|
36
|
+
* **@visulima/rollup-plugin-css:** upgraded to 1.0.0-alpha.11
|
|
37
|
+
|
|
1
38
|
## @visulima/packem [2.0.0-alpha.40](https://github.com/visulima/packem/compare/@visulima/packem@2.0.0-alpha.39...@visulima/packem@2.0.0-alpha.40) (2025-11-30)
|
|
2
39
|
|
|
3
40
|
### Code Refactoring
|