-
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New 'Log Entry Event Stream' tab & lwc (#191)
* Created new lwc logEntryEventStream for streaming LogEntryEvent__e * Added new tab to perm sets * Added stream section to README * Created new package version 4.6.8 * Fixed #204 - Improved approach for querying for an Apex class in `LogEntryHandler_Tests` to handle orgs that have 2 `Logger` classes (one with namespace and another without namespace) * Fixed #205 - Eliminated DML on LoggerSettings__c, improved in-memory creation of defaults * Fixed some issues reported by lint * Add husky pre-commit setup, fixed some tests * Added package-lock.json to repo * Added npm caching in deploy.yml * Added step to auto-delete unvalidated package version ID * Added husky pre-commit hook, using lint-staged * Removed install step for sfdx-scanner and using npm version instead * Cleaned up ordering of sections in package.json * Added GitHub issue templates to the repo * Updated npm scripts "lint" and "prettier" to "lint:fix" and "prettier:fix" for clarity * Changed a few lint rules to 'warn' instead of 'off'
- Loading branch information
Showing
50 changed files
with
24,015 additions
and
1,350 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
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ nebula-logger/main/default/** | |
|
||
# LWC Jest | ||
**/__tests__/** | ||
**/jest-mocks/** |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Bug Report | ||
description: File a bug report for Nebula Logger | ||
labels: ['bug'] | ||
body: | ||
- type: dropdown | ||
id: package-edition | ||
attributes: | ||
label: Package Edition of Nebula Logger | ||
description: Which package are you using? | ||
options: | ||
- Unlocked Package | ||
- Managed Package | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: package-version | ||
attributes: | ||
label: Package Version of Nebula Logger | ||
description: The package version number (displayed under Setup --> Installed Packages) | ||
placeholder: v4.6.0, v4.6.1, etc. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: New Bug Summary | ||
description: A description of what issue you are experiencing with Nebula Logger | ||
validations: | ||
required: true |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Feature Request | ||
description: Suggest an enhancement for Nebula Logger | ||
labels: ['enhancement'] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: New Feature Summary | ||
description: A description of what feature you'd like to be added to Nebula Logger. | ||
placeholder: | | ||
Example: I'd like to be able to [...] | ||
validations: | ||
required: true |
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 |
---|---|---|
|
@@ -11,8 +11,7 @@ tests/apex/ | |
|
||
# NPM | ||
node_modules/ | ||
package-lock.json | ||
yarn.lock | ||
|
||
# Files to exclude | ||
*.log | ||
*.log |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run husky:pre-commit |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
Oops, something went wrong.