@danielx/civet 0.7.18 → 0.7.20
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/dist/browser.js +496 -452
- package/dist/main.js +496 -452
- package/dist/main.mjs +496 -452
- package/dist/types.d.ts +1 -0
- package/dist/unplugin/unplugin.js +0 -1
- package/dist/unplugin/unplugin.mjs +0 -1
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -246,7 +246,6 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
246
246
|
compilerOptions,
|
|
247
247
|
ts
|
|
248
248
|
);
|
|
249
|
-
host.compilerHost.getDirectories = system.getDirectories;
|
|
250
249
|
const program = ts.createProgram({
|
|
251
250
|
rootNames: useConfigFileNames ? configFileNames : [...fsMap.keys()],
|
|
252
251
|
options: compilerOptions,
|
|
@@ -214,7 +214,6 @@ var rawPlugin = (options = {}, meta) => {
|
|
|
214
214
|
compilerOptions,
|
|
215
215
|
ts
|
|
216
216
|
);
|
|
217
|
-
host.compilerHost.getDirectories = system.getDirectories;
|
|
218
217
|
const program = ts.createProgram({
|
|
219
218
|
rootNames: useConfigFileNames ? configFileNames : [...fsMap.keys()],
|
|
220
219
|
options: compilerOptions,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danielx/civet",
|
|
3
3
|
"type": "commonjs",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.20",
|
|
5
5
|
"description": "CoffeeScript style syntax for TypeScript",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
7
|
"module": "dist/main.mjs",
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"license": "MIT",
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"@cspotcode/source-map-support": "^0.8.1",
|
|
85
|
-
"@typescript/vfs": "^1.
|
|
85
|
+
"@typescript/vfs": "^1.6.0",
|
|
86
86
|
"unplugin": "^1.6.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@danielx/civet": "0.7.16",
|
|
90
|
-
"@danielx/hera": "^0.8.
|
|
90
|
+
"@danielx/hera": "^0.8.16",
|
|
91
91
|
"@prettier/sync": "^0.5.2",
|
|
92
92
|
"@types/assert": "^1.5.6",
|
|
93
93
|
"@types/mocha": "^9.1.1",
|