generated from forcedotcom/library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from forcedotcom/phale/fix-module-contents
fix: fix pjson
- Loading branch information
Showing
4 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "@salesforce/vscode-service-provider", | ||
"version": "0.0.3", | ||
"description": "Library that provides access to Salesforce VSCode Service Provider", | ||
"main": "index.js", | ||
"main": "lib/src/index.js", | ||
"author": "Peter Hale <[email protected]>", | ||
"license": "BSD-3-Clause", | ||
"devDependencies": { | ||
|
@@ -34,6 +34,9 @@ | |
"vscode": "^1.1.37", | ||
"vscode-test": "^1.6.1" | ||
}, | ||
"files": [ | ||
"lib/src" | ||
], | ||
"scripts": { | ||
"test": "jest --coverage", | ||
"build": "shx rm -rf lib && tsc -b", | ||
|
@@ -55,5 +58,8 @@ | |
"./{src,test}/**/*.{ts,js}": [ | ||
"eslint -c .eslintrc.json --fix" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">=18.18.2" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
*/ | ||
|
||
export { ServiceProvider } from './services'; | ||
export { ILogger } from './types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters