chore(misc): remove dependenciesFieldType from esbuild (#19883)

This commit is contained in:
Emily Xiong 2023-10-27 11:56:48 -04:00 committed by GitHub
parent 0d1110d975
commit e4d1ef3cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 13 deletions

View File

@ -155,12 +155,6 @@
"type": "boolean",
"description": "Includes third-party packages in the bundle (i.e. npm packages)."
},
"dependenciesFieldType": {
"type": "string",
"description": "When `bundleInternalProjectsOnly` is true, this option determines whether external packages should be in 'dependencies' or 'peerDependencies' field in the generated package.json file.",
"enum": ["dependencies", "peerDependencies"],
"default": "dependencies"
},
"esbuildOptions": {
"type": "object",
"description": "Additional options to pass to esbuild. See https://esbuild.github.io/api/. Cannot be used with 'esbuildConfig' option.",

View File

@ -8,7 +8,6 @@ export interface EsBuildExecutorOptions {
assets: (AssetGlob | string)[];
bundle?: boolean;
deleteOutputPath?: boolean;
dependenciesFieldType?: boolean;
esbuildOptions?: Record<string, any>;
esbuildConfig?: string;
external?: string[];

View File

@ -130,12 +130,6 @@
"type": "boolean",
"description": "Includes third-party packages in the bundle (i.e. npm packages)."
},
"dependenciesFieldType": {
"type": "string",
"description": "When `bundleInternalProjectsOnly` is true, this option determines whether external packages should be in 'dependencies' or 'peerDependencies' field in the generated package.json file.",
"enum": ["dependencies", "peerDependencies"],
"default": "dependencies"
},
"esbuildOptions": {
"type": "object",
"description": "Additional options to pass to esbuild. See https://esbuild.github.io/api/. Cannot be used with 'esbuildConfig' option.",