-
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.
Squashed commit of the following: commit 5acfb26 Author: sfopsbot <[email protected]> Date: Tue Jul 16 22:27:14 2024 +1000 fix: update license and readme commit 8b19241 Author: sfopsbot <[email protected]> Date: Tue Jul 16 18:22:47 2024 +1000 3.2.1 commit fa2bfaa Author: sfopsbot <[email protected]> Date: Tue Jul 16 18:22:44 2024 +1000 fix: incorrect usage of apexls commit e19ba8a Author: sfopsbot <[email protected]> Date: Tue Jul 16 18:17:39 2024 +1000 3.2.0 commit 49c663b Author: sfopsbot <[email protected]> Date: Tue Jul 16 18:17:11 2024 +1000 feat: update to apex-ls commit 413e12e Author: sfopsbot <[email protected]> Date: Wed Jul 10 17:55:41 2024 +1000 3.1.2 commit d016186 Author: sfopsbot <[email protected]> Date: Wed Jul 10 17:55:26 2024 +1000 chore(deps): update to 2.13.13 of scala-library
- Loading branch information
sfopsbot
committed
Jul 16, 2024
1 parent
68ab0fc
commit 606ea6e
Showing
37 changed files
with
227 additions
and
117 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
coverage | ||
node_modules | ||
lib | ||
lib | ||
jars/.DS_Store |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# @flxbl-io/apexlink` | ||
|
||
ApexLink is the a thin node invoker for @nawforce/apex-link, which is delivered as a JAR file. This invoker executes a sub process where the apex link jar is executed | ||
ApexLink is the a thin node invoker for @apex-dev-tools/apex-ls, which is delivered as a JAR file. This invoker executes a sub process where the apex link jar is executed | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,49 +1,49 @@ | ||
{ | ||
"name": "@flxbl-io/apexlink", | ||
"version": "3.1.1", | ||
"version": "3.2.1", | ||
"description": "Wrappers around @nawforce's apexlink java pom ", | ||
"author": "flxblio", | ||
"homepage": "https://github.com/flxbl-io/sfp", | ||
"license": "MIT", | ||
"main": "lib/index", | ||
"types": "lib/index", | ||
"files": [ | ||
"/lib", | ||
"/jars" | ||
"/lib", | ||
"/jars" | ||
], | ||
"dependencies": { | ||
"@flxbl-io/sfdx-process-wrapper": "^2.0.3", | ||
"@flxbl-io/sfp-logger": "^3.0.3", | ||
"find-java-home": "2.0.0", | ||
"fs-extra": "11.1.1" | ||
"@flxbl-io/sfdx-process-wrapper": "^2.0.3", | ||
"@flxbl-io/sfp-logger": "^3.0.3", | ||
"find-java-home": "2.0.0", | ||
"fs-extra": "11.1.1" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.18.2", | ||
"@jest/globals": "^29.6.1", | ||
"@types/jest": "^29.5.3", | ||
"@types/mocha": "9.1.0", | ||
"jest": "29.6.1", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "10.7.0", | ||
"typescript": "^5" | ||
"@babel/core": "7.18.2", | ||
"@jest/globals": "^29.6.1", | ||
"@types/jest": "^29.5.3", | ||
"@types/mocha": "9.1.0", | ||
"jest": "29.6.1", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "10.7.0", | ||
"typescript": "^5" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/flxbl-io/sfp-pro.git", | ||
"directory": "packages/apexlink" | ||
"type": "git", | ||
"url": "https://github.com/flxbl-io/sfp-pro.git", | ||
"directory": "packages/apexlink" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json", | ||
"clearCache": "jest --clearCache", | ||
"test": "FORCE_COLOR=true jest --silent --verbose true --coverage --detectOpenHandles", | ||
"spec-test": "FORCE_COLOR=true jest -i packages/apexlink/tests/ApexDependencyCheckImpl.test.ts --verbose true --coverage --detectOpenHandles" | ||
"build": "npm run clean && npm run compile", | ||
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo", | ||
"compile": "tsc -b tsconfig.json", | ||
"clearCache": "jest --clearCache", | ||
"test": "FORCE_COLOR=true jest --silent --verbose true --coverage --detectOpenHandles", | ||
"spec-test": "FORCE_COLOR=true jest -i packages/apexlink/tests/ApexDependencyCheckImpl.test.ts --verbose true --coverage --detectOpenHandles" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/flxbl-io/sfp/issues" | ||
"url": "https://github.com/flxbl-io/sfp/issues" | ||
} | ||
} |
Oops, something went wrong.