@danielx/civet 0.6.26 → 0.6.27
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/README.md +6 -0
- package/dist/browser.js +5834 -17280
- package/dist/bun-civet.mjs +2 -8
- package/dist/civet +143 -124
- package/dist/config.js +37 -31
- package/dist/esbuild-plugin.js +88 -105
- package/dist/esbuild.d.mts +7 -0
- package/dist/esbuild.d.ts +7 -0
- package/dist/esbuild.js +176 -0
- package/dist/esbuild.mjs +9 -0
- package/dist/esm.mjs +56 -103
- package/dist/main.js +5834 -17280
- package/dist/main.mjs +5834 -17280
- package/dist/rollup.d.mts +7 -0
- package/dist/rollup.d.ts +7 -0
- package/dist/rollup.js +176 -0
- package/dist/rollup.mjs +9 -0
- package/dist/unplugin-shared.mjs +141 -0
- package/dist/unplugin.d.mts +16 -0
- package/dist/unplugin.d.ts +16 -0
- package/dist/unplugin.js +171 -0
- package/dist/unplugin.mjs +6 -0
- package/dist/vite.d.mts +7 -0
- package/dist/vite.d.ts +7 -0
- package/dist/vite.js +176 -0
- package/dist/vite.mjs +9 -0
- package/dist/webpack.d.mts +6 -0
- package/dist/webpack.d.ts +6 -0
- package/dist/webpack.js +176 -0
- package/dist/webpack.mjs +9 -0
- package/package.json +37 -9
- package/dist/browser.js.gzip +0 -0
package/README.md
CHANGED
|
@@ -4,6 +4,7 @@ Civet
|
|
|
4
4
|
[](https://github.com/DanielXMoore/Civet/actions/workflows/build.yml)
|
|
5
5
|
[](https://www.npmjs.com/package/@danielx/civet)
|
|
6
6
|
[](https://www.npmjs.com/package/@danielx/civet)
|
|
7
|
+
[](https://coveralls.io/github/DanielXMoore/Civet?branch=main)
|
|
7
8
|
[](https://discord.com/invite/xkrW9GebBc)
|
|
8
9
|
[](https://opencollective.com/civet)
|
|
9
10
|
|
|
@@ -373,6 +374,11 @@ esbuild.build({
|
|
|
373
374
|
|
|
374
375
|
It's super fast and works great!
|
|
375
376
|
|
|
377
|
+
Code Coverage
|
|
378
|
+
---
|
|
379
|
+
|
|
380
|
+
[](https://coveralls.io/github/DanielXMoore/Civet?branch=main)
|
|
381
|
+
|
|
376
382
|
Sponsorship
|
|
377
383
|
---
|
|
378
384
|
If you are so inclined, you can sponsor Civet on [Open Collective](https://opencollective.com/civet).
|