@salesforce/vscode-services 65.4.0 → 65.6.0
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vscode from 'vscode';
|
|
2
|
-
export type
|
|
2
|
+
export type FsProvider = vscode.FileSystemProvider & {
|
|
3
3
|
/** does not exist in the vscode.FileSystemProvider but super handy so I added it*/
|
|
4
4
|
exists: (uri: vscode.Uri) => boolean;
|
|
5
5
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Effect from 'effect/Effect';
|
|
2
2
|
import { SettingsService } from '../vscode/settingsService';
|
|
3
|
-
import {
|
|
3
|
+
import { FsProvider } from './fsTypes';
|
|
4
4
|
/** Creates the files for an empty sfdx project */
|
|
5
|
-
export declare const projectFiles: (fsp:
|
|
5
|
+
export declare const projectFiles: (fsp: FsProvider) => Effect.Effect<void, Error, SettingsService>;
|
|
6
6
|
//# sourceMappingURL=projectInit.d.ts.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { metadataDirs } from './metadataDirs';
|
|
2
1
|
/** map of file name to file content */
|
|
3
2
|
export declare const TEMPLATES: {
|
|
4
3
|
'.vscode/settings.json': string[];
|
|
@@ -11,5 +10,5 @@ export declare const TEMPLATES: {
|
|
|
11
10
|
'README.md': string[];
|
|
12
11
|
'tsconfig.json': string[];
|
|
13
12
|
};
|
|
14
|
-
export { metadataDirs };
|
|
13
|
+
export { metadataDirs } from './metadataDirs';
|
|
15
14
|
//# sourceMappingURL=templates.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/vscode-services",
|
|
3
|
-
"version": "65.
|
|
3
|
+
"version": "65.6.0",
|
|
4
4
|
"description": "TypeScript type definitions for Salesforce VS Code Services extension API",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"license": "BSD-3-Clause",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/node": "^20.0.0",
|
|
54
|
-
"shx": "^0.
|
|
54
|
+
"shx": "^0.4.0",
|
|
55
55
|
"ts-node": "^10.9.2",
|
|
56
56
|
"typescript": "^5.4.2"
|
|
57
57
|
}
|