@danielx/civet 0.6.26 → 0.6.28
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 +10 -0
- package/dist/browser.js +6075 -17474
- 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 +6075 -17474
- package/dist/main.mjs +6075 -17474
- 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
|
|
|
@@ -15,8 +16,12 @@ The modern way to write TypeScript.
|
|
|
15
16
|
- [Civet VSCode Extension](https://marketplace.visualstudio.com/items?itemName=DanielX.civet)
|
|
16
17
|
- [Discord Server](https://discord.gg/xkrW9GebBc)
|
|
17
18
|
- Plugins for
|
|
19
|
+
[Vite, esbuild, Rollup, Webpack, Rspack](integration/unplugin)
|
|
20
|
+
(including metaframeworks such as Astro),
|
|
21
|
+
<!--
|
|
18
22
|
[esbuild](source/esbuild-plugin.civet),
|
|
19
23
|
[Vite](https://github.com/lorefnon/vite-plugin-civet),
|
|
24
|
+
-->
|
|
20
25
|
[Babel](source/babel-plugin.mjs),
|
|
21
26
|
[Gulp](integrations/gulp),
|
|
22
27
|
[ESM module resolution](source/esm.civet),
|
|
@@ -373,6 +378,11 @@ esbuild.build({
|
|
|
373
378
|
|
|
374
379
|
It's super fast and works great!
|
|
375
380
|
|
|
381
|
+
Code Coverage
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
[](https://coveralls.io/github/DanielXMoore/Civet?branch=main)
|
|
385
|
+
|
|
376
386
|
Sponsorship
|
|
377
387
|
---
|
|
378
388
|
If you are so inclined, you can sponsor Civet on [Open Collective](https://opencollective.com/civet).
|