@danielx/civet 0.8.17 → 0.9.1
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 +13 -0
- package/dist/browser.js +351 -239
- package/dist/main.js +351 -239
- package/dist/main.mjs +351 -239
- package/dist/types.d.ts +1 -0
- package/dist/unplugin/unplugin.js +3 -1
- package/dist/unplugin/unplugin.mjs +3 -1
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -383,7 +383,9 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
383
383
|
import_path.default.dirname(
|
|
384
384
|
import_path.default.resolve(esbuildOptions.outdir, pathFromDistDir)
|
|
385
385
|
),
|
|
386
|
-
{
|
|
386
|
+
{
|
|
387
|
+
recursive: true
|
|
388
|
+
}
|
|
387
389
|
);
|
|
388
390
|
}
|
|
389
391
|
return this.emitFile({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielx/civet",
|
|
3
3
|
"type": "commonjs",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.9.1",
|
|
5
5
|
"description": "CoffeeScript style syntax for TypeScript",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"module": "dist/main.mjs",
|
|
@@ -92,10 +92,10 @@
|
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@cspotcode/source-map-support": "^0.8.1",
|
|
94
94
|
"@typescript/vfs": "^1.6.0",
|
|
95
|
-
"unplugin": "^1.
|
|
95
|
+
"unplugin": "^2.1.0"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@danielx/civet": "0.
|
|
98
|
+
"@danielx/civet": "0.9.0",
|
|
99
99
|
"@danielx/hera": "^0.8.16",
|
|
100
100
|
"@prettier/sync": "^0.5.2",
|
|
101
101
|
"@types/assert": "^1.5.6",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"mocha": "^10.7.3",
|
|
108
108
|
"prettier": "^3.2.5",
|
|
109
109
|
"terser": "^5.16.1",
|
|
110
|
-
"ts-node": "^10.9.
|
|
110
|
+
"ts-node": "^10.9.2",
|
|
111
111
|
"tslib": "^2.4.0",
|
|
112
112
|
"typescript": "^5.5.2",
|
|
113
113
|
"vite": "^4.4.12",
|