unplugin-dts-bundle-generator 3.4.0 → 3.4.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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Node.js & TypeScript",
|
|
3
|
+
"dockerComposeFile": "docker-compose.yml",
|
|
4
|
+
"service": "app",
|
|
5
|
+
"workspaceFolder": "/workspace",
|
|
6
|
+
"shutdownAction": "stopCompose",
|
|
7
|
+
"settings": {
|
|
8
|
+
"terminal.integrated.defaultProfile.linux": "bash",
|
|
9
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
10
|
+
},
|
|
11
|
+
"extensions": [
|
|
12
|
+
"dbaeumer.vscode-eslint",
|
|
13
|
+
"ms-vscode.vscode-typescript-next"
|
|
14
|
+
],
|
|
15
|
+
"forwardPorts": [
|
|
16
|
+
3000
|
|
17
|
+
],
|
|
18
|
+
"remoteUser": "node",
|
|
19
|
+
"overrideCommand": false
|
|
20
|
+
}
|
|
@@ -8,13 +8,16 @@ export interface DtsBundleGeneratorOptions {
|
|
|
8
8
|
export interface OptionsForESBuild extends DtsBundleGeneratorOptions {
|
|
9
9
|
outfile?: string;
|
|
10
10
|
}
|
|
11
|
+
export interface OptionsForRolldown extends DtsBundleGeneratorOptions {
|
|
12
|
+
file?: string;
|
|
13
|
+
}
|
|
11
14
|
export interface OptionsForRollup extends DtsBundleGeneratorOptions {
|
|
12
15
|
file?: string;
|
|
13
16
|
}
|
|
14
17
|
export interface OptionsForVite extends DtsBundleGeneratorOptions {
|
|
15
18
|
fileName: string | ((entryName: string) => string);
|
|
16
19
|
}
|
|
17
|
-
export type Options = OptionsForESBuild | OptionsForRollup | OptionsForVite;
|
|
20
|
+
export type Options = OptionsForESBuild | OptionsForRolldown | OptionsForRollup | OptionsForVite;
|
|
18
21
|
declare const _default: import("unplugin").UnpluginInstance<Options, false>;
|
|
19
22
|
|
|
20
23
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unplugin-dts-bundle-generator",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "DTS bundle generator for Unplugin",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unplugin",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"lint": "eslint . --fix && sort-package-json",
|
|
57
57
|
"lint:ci": "eslint . && sort-package-json --check",
|
|
58
58
|
"prepack": "npm run clean && npm run build",
|
|
59
|
-
"test
|
|
59
|
+
"test": "npm run build & rimraf -v dist-esbuild dist-rolldown dist-rollup & node ./test/esbuild.config.ts & rolldown --config ./test/rollup.config.ts & rollup --config ./test/rollup.config.ts",
|
|
60
60
|
"test:esbuild": "npm run build & rimraf dist-esbuild & node ./test/esbuild.config.ts",
|
|
61
61
|
"test:rolldown": "npm run build & rimraf dist-rollup & rolldown --config ./test/rollup.config.ts",
|
|
62
62
|
"test:rollup": "npm run build & rimraf dist-rollup & rollup --config ./test/rollup.config.ts",
|